Add getModel to Renderable

This commit is contained in:
Adam
2017-08-11 16:42:37 -04:00
parent f7ab56945c
commit b5603f11b8
5 changed files with 73 additions and 9 deletions

View File

@@ -35,9 +35,6 @@ public interface Player extends Actor
@Import("name")
String getName();
@Import("getModel")
Model getModel();
@Import("combatLevel")
int getCombatLevel();

View File

@@ -31,4 +31,7 @@ public interface Renderable extends Node
{
@Import("modelHeight")
int getModelHeight();
@Import("getModel")
Model getModel();
}