THE UPDATE
Merging months of dev work into master. The update is playable, but untested.
This commit is contained in:
29
StevenDimDoors/mod_pocketDim/saving/PackedDungeonData.java
Normal file
29
StevenDimDoors/mod_pocketDim/saving/PackedDungeonData.java
Normal file
@@ -0,0 +1,29 @@
|
||||
package StevenDimDoors.mod_pocketDim.saving;
|
||||
|
||||
import StevenDimDoors.mod_pocketDim.dungeon.pack.DungeonType;
|
||||
|
||||
public class PackedDungeonData
|
||||
{
|
||||
|
||||
public final int Weight;
|
||||
public final boolean IsOpen;
|
||||
public final boolean IsInternal;
|
||||
public final String SchematicPath;
|
||||
public final String SchematicName;
|
||||
public final String DungeonTypeName;
|
||||
public final String DungeonPackName;
|
||||
|
||||
public PackedDungeonData(int weight, boolean isOpen, boolean isInternal, String schematicPath, String schematicName, String dungeonTypeName, String dungeonPackName)
|
||||
{
|
||||
this.Weight= weight;
|
||||
this.IsOpen=isOpen;
|
||||
this.IsInternal=isInternal;
|
||||
this.SchematicName=schematicName;
|
||||
this.SchematicPath=schematicPath;
|
||||
this.DungeonTypeName=dungeonTypeName;
|
||||
this.DungeonPackName=dungeonPackName;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user