Package worldBuilder
Class RpgmMap
- java.lang.Object
-
- worldBuilder.RpgmMap
-
public class RpgmMap extends java.lang.Objectrepresents identifying information in an RPGMaker map
-
-
Field Summary
Fields Modifier and Type Field Description intidmap ID index (starts with 1)java.lang.Stringnamefile name within the project/map directoryintparentmap ID index of parent (containing) mapdoublexRPGMaker big-map coordinates of the top left cornerdoubleyRPGMaker 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
-
-