the_big_one/src/main/java/jesse/keeblarcraft/EventMgr/EventManager.java
Jkibbels 95c68935f3
Some checks failed
build / build (21) (push) Has been cancelled
First one
2024-10-28 17:47:51 -04:00

16 lines
498 B
Java

/*
*
* EventManager
*
* This class is responsible for handling the setup and execution of events within the game for the mod. These events can be configured as plugins in this
* directory which are executed in an abstract fashion with handling. If you need a new event (for a story item, or handling a player event, etc) then it
* is preferred to add that as an extension class and called within this manager object
*
*/
package jesse.keeblarcraft.EventMgr;
public class EventManager {
}