Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- interface Foo extends ItemMeshDefinition{
- static Foo of(Foo foo) {
- return foo;
- }
- MRL getLocation(ItemStack stack);
- @Override default MRL getModelLocation(ItemStack stack) { return this.getLocation(stack); }
- }
- ItemMeshDefinition x = Foo.of(stack -> mrl);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement