Created
October 19, 2012 13:46
-
-
Save grum/3918312 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Meh first version is saner | |
interface Location extends Position, BlockLocation { | |
} | |
interface BlockLocation extends BlockPosition, Locatable { | |
} | |
interface Locatable { | |
World getWorld(); | |
} | |
interface Position extends BlockPosition { | |
double getX(); | |
double getY(); | |
double getZ(); | |
} | |
interface BlockPosition { | |
int getBlockX(); | |
int getBlockY(); | |
int getBlockZ(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment