Misc cleanup (thanks @Col-E)

Signed-off-by: SticksDev <tanner@teamhydra.dev>
This commit is contained in:
2023-06-09 21:14:27 -04:00
parent 616c6ea517
commit 98290f1c61
7 changed files with 31 additions and 20 deletions

View File

@ -4,9 +4,9 @@ package me.sticksdev.runicspells.structures;
* The base class for spells, only contains a name and a description
*/
public class BaseSpell {
public String name;
public String description;
public int spellID;
public final String name;
public final String description;
public final int spellID;
public int range;
/**