Package worldBuilder
Class RpgmMap
- java.lang.Object
-
- worldBuilder.RpgmMap
-
public class RpgmMap extends java.lang.Object
represents identifying information in an RPGMaker map
-
-
Field Summary
Fields Modifier and Type Field Description int
id
map ID index (starts with 1)java.lang.String
name
file name within the project/map directoryint
parent
map ID index of parent (containing) mapdouble
x
RPGMaker big-map coordinates of the top left cornerdouble
y
RPGMaker big-map coordinates of the top left corner
-
Constructor Summary
Constructors Constructor Description RpgmMap(java.lang.String name)
instantiate a new map (within an index)
-
-
-
Field Detail
-
name
public java.lang.String name
file name within the project/map directory
-
id
public int id
map ID index (starts with 1)
-
parent
public int parent
map ID index of parent (containing) map
-
x
public double x
RPGMaker big-map coordinates of the top left corner
-
y
public double y
RPGMaker big-map coordinates of the top left corner
-
-