mixins: getZ for BoundaryObject and FloorDecoration

This commit is contained in:
zjustin
2022-03-20 18:25:54 +11:00
parent 651e85fdb7
commit e68fdc6540
5 changed files with 20 additions and 13 deletions

View File

@@ -17,6 +17,10 @@ public interface RSBoundaryObject extends WallObject
@Override
int getY();
@Import("z")
@Override
int getZ();
@Import("orientationA")
@Override
int getOrientationA();

View File

@@ -15,6 +15,9 @@ public interface RSFloorDecoration extends GroundObject
@Import("y")
int getY();
@Import("z")
int getZ();
@Import("renderable")
@Override
RSRenderable getRenderable();