Add interface for named components.

This commit is contained in:
asofold 2012-11-08 10:49:04 +01:00
parent 823fc285c5
commit 138431c413

View File

@ -0,0 +1,10 @@
package fr.neatmonster.nocheatplus.components;
/**
* Interface for components that can be registered with a name.
* @author mc_dev
*
*/
public interface ComponentWithName {
public String getComponentName();
}