- Timestamp:
- Oct 25, 2008, 7:56:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/network/Synchronisable.h
r1990 r2011 54 54 toclient=0x1, 55 55 toserver=0x2, 56 bidirectional=0x3 56 bidirectional=0x3, 57 serverMaster=0x3, 58 clientMaster=0x7 57 59 }; 58 60 } … … 77 79 }; 78 80 79 typedefstruct _NetworkExport synchronisableVariable{81 struct _NetworkExport synchronisableVariable{ 80 82 unsigned int size; 81 83 int mode; // this determines in which direction the variable gets synchronised … … 83 85 variableType type; 84 86 NetworkCallbackBase *callback; 85 }SYNCVAR; 87 void *varBuffer; 88 uint8_t varReference; 89 }; 86 90 87 91 /**
Note: See TracChangeset
for help on using the changeset viewer.