mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2024-11-23 02:35:25 +01:00
Implemented more methods in Manager
This commit is contained in:
parent
a53729bed0
commit
7de0b553d3
@ -1,6 +1,7 @@
|
||||
package com.songoda.skyblock.manager;
|
||||
|
||||
import com.songoda.skyblock.SkyBlock;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
public abstract class Manager {
|
||||
|
||||
@ -13,11 +14,15 @@ public abstract class Manager {
|
||||
/**
|
||||
* Reloads the Manager's settings
|
||||
*/
|
||||
public abstract void reload();
|
||||
public void reload() {};
|
||||
|
||||
/**
|
||||
* Cleans up the Manager's resources
|
||||
*/
|
||||
public abstract void disable();
|
||||
public void disable() {};
|
||||
|
||||
public void triggerPlayerLogin(Player player) {}
|
||||
|
||||
public void triggerPlayerLogout(Player player) {}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user