Added fire spell, starting config, and spell handlers. Also added skel for cooldown and mana handlers.

This commit is contained in:
2023-05-31 21:03:09 -04:00
parent cca8ae9a55
commit 820f61b894
8 changed files with 244 additions and 10 deletions

View File

@ -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;
}
}