THE UPDATE
Merging months of dev work into master. The update is playable, but untested.
This commit is contained in:
16
StevenDimDoors/mod_pocketDim/saving/PackedLinkTail.java
Normal file
16
StevenDimDoors/mod_pocketDim/saving/PackedLinkTail.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package StevenDimDoors.mod_pocketDim.saving;
|
||||
|
||||
import StevenDimDoors.mod_pocketDim.util.Point4D;
|
||||
|
||||
public class PackedLinkTail
|
||||
{
|
||||
public final Point4D destination;
|
||||
public final int linkType;
|
||||
|
||||
public PackedLinkTail(Point4D destination, int linkType)
|
||||
{
|
||||
this.destination=destination;
|
||||
this.linkType=linkType;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user