diff options
| author | SushiTee <weichel.sascha@xxx.xx> | 2011-07-12 03:14:46 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-07-15 00:47:52 +0200 |
| commit | d78c0d66e5108f0316f3bcac2a2119aa3a680ff9 (patch) | |
| tree | c5527f5d756bbb0ff6dc901828e49ad9535b204f /src/game/mapitems.h | |
| parent | a3fec2f9f384f82ec631bbfc43bce456b20a2e0e (diff) | |
| download | zcatch-d78c0d66e5108f0316f3bcac2a2119aa3a680ff9.tar.gz zcatch-d78c0d66e5108f0316f3bcac2a2119aa3a680ff9.zip | |
ability to name groups and layers
Diffstat (limited to 'src/game/mapitems.h')
| -rw-r--r-- | src/game/mapitems.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/game/mapitems.h b/src/game/mapitems.h index d99d6724..4daf139b 100644 --- a/src/game/mapitems.h +++ b/src/game/mapitems.h @@ -114,13 +114,15 @@ struct CMapItemGroup_v1 struct CMapItemGroup : public CMapItemGroup_v1 { - enum { CURRENT_VERSION=2 }; + enum { CURRENT_VERSION=3 }; int m_UseClipping; int m_ClipX; int m_ClipY; int m_ClipW; int m_ClipH; + + int m_aName[3]; } ; struct CMapItemLayer @@ -145,6 +147,8 @@ struct CMapItemLayerTilemap int m_Image; int m_Data; + + int m_aName[3]; } ; struct CMapItemLayerQuads @@ -155,6 +159,8 @@ struct CMapItemLayerQuads int m_NumQuads; int m_Data; int m_Image; + + int m_aName[3]; } ; struct CMapItemVersion |