Beispiel #1
0
 public VMOutfitReference(string data, bool head)
 {
     OftData = new Outfit();
     if (head)
     {
         OftData.ReadHead(data);
     }
     else
     {
         OftData.Read(data);
     }
 }
Beispiel #2
0
 public VMOutfitReference(STR str, bool head)
 {
     OftData = new Outfit();
     if (head)
     {
         OftData.ReadHead(str.GetString(2));
     }
     else
     {
         OftData.Read(str);
     }
 }