gt22

Untitled

Aug 16th, 2016
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package com.gt22.gt22core.api.multiblock;
  2.  
  3. import net.minecraft.tileentity.TileEntity;
  4.  
  5. public interface IMultiblockPart
  6. {
  7.     public static class Offset
  8.     {
  9.         public final int x, y, z;
  10.         public Offset(int x, int y, int z)
  11.         {
  12.             this.x = x;
  13.             this.y = y;
  14.             this.z = z;
  15.         }
  16.     }
  17.    
  18.     public void form(Offset off);
  19.     public void unform();
  20.     public boolean isFormed();
  21.     public TileEntity getCore();
  22. }
Advertisement
Add Comment
Please, Sign In to add comment