diff options
Diffstat (limited to '')
-rw-r--r-- | src/mapdata.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mapdata.py b/src/mapdata.py index 8ecb33c..b453172 100644 --- a/src/mapdata.py +++ b/src/mapdata.py @@ -25,8 +25,8 @@ class KPPathSegment(object): class KPPath(object): def __init__(self): - self.start_node = None - self.end_node = None + self.startNode = None + self.endNode = None self.segments = [] @@ -44,3 +44,5 @@ class KPMap(object): self.paths = [] self.doodads = [] + self.nextLayerNumber = 1 + |