Ginger3D/src/main/java/com/halotroop/litecraft/types/entity/Entity.java

13 lines
444 B
Java
Raw Normal View History

2020-03-09 04:08:09 +00:00
package com.halotroop.litecraft.types.entity;
2020-02-24 03:18:24 +00:00
2020-02-28 03:44:46 +00:00
import org.joml.Vector3f;
2020-03-02 04:33:27 +00:00
import com.github.hydos.ginger.engine.common.elements.objects.RenderObject;
2020-03-03 05:56:37 +00:00
import com.github.hydos.ginger.engine.opengl.render.models.GLTexturedModel;
2020-02-24 05:36:20 +00:00
2020-02-25 07:00:42 +00:00
public abstract class Entity extends RenderObject
{
2020-03-03 05:56:37 +00:00
public Entity(GLTexturedModel model, Vector3f position, float rotX, float rotY, float rotZ, Vector3f scale)
2020-02-25 07:00:42 +00:00
{ super(model, position, rotX, rotY, rotZ, scale); }
2020-02-24 03:18:24 +00:00
}