Exemple #1
0
 public void CopyProperties(int offsetProperties, int offsetObjects, NetworkObj_Meta meta, string prefix, int arrayIndex)
 {
     for (int i = 0; i < meta.Properties.Length; ++i)
     {
         AddCopiedProperty(offsetProperties + i, offsetObjects + meta.Properties[i].OffsetObjects, meta.Properties[i], prefix, arrayIndex);
     }
 }
 public NetworkObj_Root(NetworkObj_Meta meta)
     : base(meta)
 {
     InitRoot();
 }
 public NetworkObj(NetworkObj_Meta meta)
 {
     Meta = meta;
 }
Exemple #4
0
 public NetworkCommand_Data(NetworkObj_Meta meta)
     : base(meta)
 {
 }