+ Added adapter concept

This commit is contained in:
Matthew Cech
2019-09-11 19:53:20 -07:00
parent 1e73f6adae
commit cf7bd68658
5 changed files with 41 additions and 3 deletions
@@ -0,0 +1,19 @@
package commands.dew.adapter;
import commands.dew.core.api.IDewPlayer;
public class KittyAdapterDewPlayer implements IDewPlayer
{
@Override
public String getName() {
// TODO Auto-generated method stub
return null;
}
@Override
public String getUniqueID() {
// TODO Auto-generated method stub
return null;
}
}