Пример #1
0
 public ButtonHeavy(int xLocation, int yLocation, Miscellanious linked)
     : base(xLocation, yLocation, linked)
 {
     goodGraphic = Textures.textures["buttonHUp"];
     badGraphic = Textures.textures["buttonHUp"];
     link = linked;
     heavyButton = true;
 }
Пример #2
0
 public ButtonPlayer(int xLocation, int yLocation, Miscellanious linked)
     : base(xLocation, yLocation, linked)
 {
     goodGraphic = Textures.textures["buttonUp"];
     badGraphic = Textures.textures["buttonUp"];
     link = linked;
     heavyButton = false;
 }
Пример #3
0
 public ButtonHeavy(int xLocation, int yLocation, Miscellanious linked)
     : base(xLocation, yLocation, linked)
 {
     goodGraphic = Textures.textures["buttonHUp"];
     badGraphic  = Textures.textures["buttonHUp"];
     link        = linked;
     heavyButton = true;
 }
Пример #4
0
 public ButtonPlayer(int xLocation, int yLocation, Miscellanious linked)
     : base(xLocation, yLocation, linked)
 {
     goodGraphic = Textures.textures["buttonUp"];
     badGraphic = Textures.textures["buttonUp"];
     link = linked;
     heavyButton = false;
 }
Пример #5
0
 public ButtonShadow(int xLocation, int yLocation, Miscellanious linked, bool initstate)
     : base(xLocation, yLocation, linked)
 {
     goodGraphic = Textures.textures["buttonSUp"];
     badGraphic = Textures.textures["buttonSUp"];
     link = linked;
     existState = initstate;
     heavyButton = false;
 }
Пример #6
0
 public ButtonShadow(int xLocation, int yLocation, Miscellanious linked, bool initstate)
     : base(xLocation, yLocation, linked)
 {
     goodGraphic = Textures.textures["buttonSUp"];
     badGraphic  = Textures.textures["buttonSUp"];
     link        = linked;
     existState  = initstate;
     heavyButton = false;
 }
Пример #7
0
 public Button(int xLocation, int yLocation, Miscellanious linked)
     : base(xLocation, yLocation)
 {
 }
Пример #8
0
 public Button(int xLocation, int yLocation, Miscellanious linked)
     : base(xLocation, yLocation)
 {
 }