diff options
| author | oy <Tom_Adams@web.de> | 2011-12-04 14:34:27 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-12-04 14:39:47 +0100 |
| commit | 9a03989e84c8d2719801889738c6af68864aba10 (patch) | |
| tree | c63debba2e7d849d615f0d5db9f1f8f4a816838d /src/game/mapitems.h | |
| parent | b2a825652d8588dfb7f1c793403ca05555b1d75f (diff) | |
| download | zcatch-9a03989e84c8d2719801889738c6af68864aba10.tar.gz zcatch-9a03989e84c8d2719801889738c6af68864aba10.zip | |
added "Make an option for each envelope: (a) synchronized (b) starting at join" by Choupom
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 43005f75..bb2f4d19 100644 --- a/src/game/mapitems.h +++ b/src/game/mapitems.h @@ -178,7 +178,7 @@ struct CEnvPoint bool operator<(const CEnvPoint &Other) { return m_Time < Other.m_Time; } } ; -struct CMapItemEnvelope +struct CMapItemEnvelope_v1 { int m_Version; int m_Channels; @@ -187,4 +187,10 @@ struct CMapItemEnvelope int m_aName[8]; } ; +struct CMapItemEnvelope : public CMapItemEnvelope_v1 +{ + enum { CURRENT_VERSION=2 }; + int m_Synchronized; +}; + #endif |