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:
@ -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;
|
||||
|
||||
}
|
Reference in New Issue
Block a user