Skip to content
Permalink
58879c4dcb
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
22 lines (16 sloc) 450 Bytes
package game.entity;
import game.graphics.Texture;
import game.graphics.VertexArray;
import game.math.Vector3f;
public abstract class Entity {
protected float SIZE;
protected Vector3f position = new Vector3f();
protected float speed;
protected VertexArray mesh;
protected Texture texture;
protected float[] vertices;
protected byte[] indices;
protected float[] tcs;
public abstract void update();
public abstract void render();
}