summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/IComponent.java
blob: 5cdee2b16c2cf869ef1385a3cd4cf37991695324 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package net.ess3.api;

public interface IComponent extends IReload
{
	/**
	 * Enable the component.
	 */
	void onEnable();

	/**
	 * Disable the component.
	 */
	void onDisable();
}