Example #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;
 }
Example #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;
 }
Example #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;
 }
Example #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;
 }
Example #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;
 }
Example #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;
 }
Example #7
0
 public Button(int xLocation, int yLocation, Miscellanious linked)
     : base(xLocation, yLocation)
 {
 }
Example #8
0
 public Button(int xLocation, int yLocation, Miscellanious linked)
     : base(xLocation, yLocation)
 {
 }