コード例 #1
0
 internal OverlayDesc(OverlayDesc other)
 {
     this.flags           = other.flags;
     this.textureInstance = other.textureInstance;
 }
コード例 #2
0
 internal OverlayDesc(BinaryReader br)
 {
     this.flags           = new CASP.AgeGender(br);
     this.textureInstance = br.ReadUInt64();
 }
コード例 #3
0
 public OverlayDesc(XmodsEnums.Age age, XmodsEnums.Gender gender, ulong TextureInstance)
 {
     this.flags           = new CASP.AgeGender(age, gender);
     this.textureInstance = TextureInstance;
 }