コード例 #1
0
ファイル: ButtonHeavy.cs プロジェクト: ferg060129/Toggle
 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
ファイル: ButtonPlayer.cs プロジェクト: kmspies/Toggle
 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
ファイル: ButtonPlayer.cs プロジェクト: ferg060129/Toggle
 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
ファイル: ButtonShadow.cs プロジェクト: ferg060129/Toggle
 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
ファイル: ButtonShadow.cs プロジェクト: kmspies/Toggle
 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
ファイル: Button.cs プロジェクト: ferg060129/Toggle
 public Button(int xLocation, int yLocation, Miscellanious linked)
     : base(xLocation, yLocation)
 {
 }
コード例 #8
0
ファイル: Button.cs プロジェクト: kmspies/Toggle
 public Button(int xLocation, int yLocation, Miscellanious linked)
     : base(xLocation, yLocation)
 {
 }