Add basic things:

- Added util to handle config loading and unloading
- Added some base structs for spells
- Added base spell package
This commit is contained in:
2023-05-31 16:33:06 -04:00
commit cca8ae9a55
8 changed files with 313 additions and 0 deletions

View File

@ -0,0 +1,10 @@
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;
}