Added fire spell, starting config, and spell handlers. Also added skel for cooldown and mana handlers.
This commit is contained in:
@ -7,4 +7,16 @@ public class BaseSpell {
|
||||
public String name;
|
||||
public String description;
|
||||
|
||||
public BaseSpell(String name, String description) {
|
||||
this.name = name;
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user