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