Example #1
0
 public ClothingSet(PlayerPalette.ClothingSet set)
 {
     this.enHairColor = set.enHairColor;
     this.enSkinColor = set.enSkinColor;
     this.enPonchoColor = set.enPonchoColor;
     this.enShirtColor = set.enShirtColor;
     this.enPantColor = set.enPantColor;
     this.enShoeColor = set.enShoeColor;
 }
Example #2
0
 public ClothingSet(BinaryReader br)
 {
     this.enSkinColor = (PlayerPalette.SkinColors)br.ReadByte();
     this.enPonchoColor = (PlayerPalette.PonchoColors)br.ReadByte();
     this.enShirtColor = (PlayerPalette.PonchoColors)br.ReadByte();
     this.enPantColor = (PlayerPalette.PonchoColors)br.ReadByte();
     this.enHairColor = (PlayerPalette.PonchoColors)br.ReadByte();
     this.enShoeColor = (PlayerPalette.ShoeColors)br.ReadByte();
 }