about summary refs log tree commit diff
path: root/src/game/mapitems.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/mapitems.h')
-rw-r--r--src/game/mapitems.h8
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