コード例 #1
0
ファイル: KnifePlatform.cs プロジェクト: kmspies/Toggle
 public KnifePlatform(int xLocation, int yLocation)
     : base(xLocation, yLocation)
 {
     itemType    = new KnifeI().GetType();
     goodGraphic = Textures.textures["knifePlatform"];
     badGraphic  = Textures.textures["knifePlatform"];
 }
コード例 #2
0
ファイル: KnifePlatform.cs プロジェクト: ferg060129/Toggle
 public KnifePlatform(int xLocation, int yLocation)
     : base(xLocation, yLocation)
 {
     itemType = new KnifeI().GetType();
     goodGraphic = Textures.textures["knifePlatform"];
     badGraphic = Textures.textures["knifePlatform"];
 }
コード例 #3
0
ファイル: Knife.cs プロジェクト: ferg060129/Toggle
 public override void makeInventoryItem()
 {
     inventoryItem = new KnifeI();
 }
コード例 #4
0
 public override void makeInventoryItem()
 {
     inventoryItem = new KnifeI();
 }