Add Identified interface. Should probably start using it.

This commit is contained in:
Olof Larsson 2016-03-08 13:57:20 +01:00
parent de2c1bc249
commit 402e00a4e0

View File

@ -0,0 +1,6 @@
package com.massivecraft.massivecore;
public interface Identified
{
public String getId();
}