Added code to ability super class
This commit is contained in:
@@ -1,4 +1,14 @@
|
||||
package netwerkprog.game.util;
|
||||
|
||||
public abstract class Ability {
|
||||
protected String name;
|
||||
|
||||
public Ability(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
|
||||
public abstract String getCommand();
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user