initial commit

This commit is contained in:
Raoul Van den Berge
2015-12-07 17:09:01 +01:00
commit b1e54306a5
18 changed files with 433 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package storagecraft.tile;
import io.netty.buffer.ByteBuf;
public interface INetworkTile {
public void fromBytes(ByteBuf buf);
public void toBytes(ByteBuf buf);
}