13 lines
240 B
Java
13 lines
240 B
Java
package Entities;
|
|
|
|
/**
|
|
* Entity class, which is the main class regrouping characters and projectiles
|
|
* @author Victor
|
|
*
|
|
*/
|
|
public class Entity {
|
|
private int posx;
|
|
private int posy;
|
|
private .Frame currentFrame = new Entityframe();
|
|
}
|