Started packing save data. At least it writes

This commit is contained in:
StevenRS11
2013-10-17 04:00:32 -04:00
parent 3376c1d772
commit 9418ed59df
10 changed files with 144 additions and 8 deletions

View File

@@ -60,7 +60,10 @@ public class Point3D implements Serializable {
{
return new Point3D(x, y, z);
}
public int[] toIntArray()
{
return new int[]{x,y,z};
}
public boolean equals(Point3D other)
{
if (other == null)