コード例 #1
0
ファイル: Key.cs プロジェクト: pennetti/csharp-heroes
 public Key(Point location, Texture2D texture, Doorway door)
     : base(location, texture)
 {
     this.door = door;
     this.Initialize();
 }