Esempio n. 1
0
 public ClothingSet(PlayerPalette.PonchoColors enHairColor, PlayerPalette.SkinColors enSkinColor, PlayerPalette.PonchoColors enPonchoColor, PlayerPalette.PonchoColors enShirtColor, PlayerPalette.PonchoColors enPantColor)
 {
     this.enHairColor = enHairColor;
     this.enSkinColor = enSkinColor;
     this.enPonchoColor = enPonchoColor;
     this.enShirtColor = enShirtColor;
     this.enPantColor = enPantColor;
 }
Esempio n. 2
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;
 }
Esempio n. 3
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();
 }