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