Finish plugin functionality

This commit is contained in:
2023-06-01 15:34:45 -04:00
parent 820f61b894
commit a3f581fc8a
18 changed files with 685 additions and 38 deletions

View File

@ -6,10 +6,12 @@ package me.sticksdev.runicspells.structures;
public class BaseSpell {
public String name;
public String description;
public int spellID;
public BaseSpell(String name, String description) {
public BaseSpell(String name, String description, int spellID) {
this.name = name;
this.description = description;
this.spellID = spellID;
}
public String getName() {
@ -19,4 +21,8 @@ public class BaseSpell {
public String getDescription() {
return description;
}
public int getSpellID() {
return spellID;
}
}