mirror of
https://github.com/Klagarge/PokeHES.git
synced 2025-07-07 17:01:10 +00:00
convert with lib
This commit is contained in:
16
src/Entity/Character.java
Normal file
16
src/Entity/Character.java
Normal file
@ -0,0 +1,16 @@
|
||||
package Entity;
|
||||
|
||||
public abstract class Character extends Entity{
|
||||
public Character(String name) {
|
||||
super(name);
|
||||
//TODO Auto-generated constructor stub
|
||||
}
|
||||
|
||||
private int pv;
|
||||
|
||||
public int getPv() {
|
||||
return pv;
|
||||
}
|
||||
|
||||
abstract protected void removedPv(int pv);
|
||||
}
|
Reference in New Issue
Block a user