1
0
mirror of https://github.com/Klagarge/PokeHES.git synced 2025-08-13 00:13:09 +00:00

initial commit

This commit is contained in:
2022-05-25 15:32:53 +02:00
parent 6c551fc008
commit 8b71ce1c54
12 changed files with 691 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,5 @@
package Entity;
public abstract class Character extends Entity{
}

View File

@@ -0,0 +1,5 @@
package Entity;
public class Enemy extends Character{
}

View File

@@ -0,0 +1,5 @@
package Entity;
public abstract class Entity {
}

View File

@@ -0,0 +1,5 @@
package Entity;
public class Player extends Character{
}

View File

@@ -0,0 +1,5 @@
package Entity;
public class Stuff extends Entity{
}