1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2025-10-31 03:39:16 +00:00
This commit is contained in:
2022-06-17 08:48:57 +02:00
parent 42ddda4ae4
commit 82e2a0c059
8 changed files with 63 additions and 12 deletions

View File

@@ -6,6 +6,13 @@ import ch.hevs.gdx2d.components.bitmaps.Spritesheet;
import ch.hevs.gdx2d.lib.GdxGraphics;
import ch.hevs.gdx2d.lib.interfaces.DrawableObject;
/**
* Main class for manage entity
* Can create all type of entity character or just stuff.
* @author Rémi Heredero
* @author Yann Sierro
* @version 1.0.0
*/
public abstract class Entity implements DrawableObject {
protected String name;
protected String map;
@@ -51,7 +58,6 @@ public abstract class Entity implements DrawableObject {
}
public void graphicRender(GdxGraphics g){
}
/**