コード例 #1
0
ファイル: Octorok.cs プロジェクト: Uhha/Zelda
 public Octorok(BaseObject player,Texture2D bulletTexture, ManagerMap map, int cooldown = 1000 )
 {
     _player = player;
     _bullets = new List<OctorokBullet>();
     _cooldown = cooldown;
     _counter = 0;
     _bulletTexture = bulletTexture;
     _map = map;
 }
コード例 #2
0
ファイル: Game1.cs プロジェクト: Uhha/Zelda
 public Game1()
 {
     graphics = new GraphicsDeviceManager(this);
     this.IsMouseVisible = true;
     Content.RootDirectory = "Content";
     this.graphics.PreferredBackBufferHeight = 240;
     this.graphics.PreferredBackBufferWidth = 320;
     _player = new BaseObject();
     _testNPC = new BaseObject();
     _testEnemy = new BaseObject();
     _managerInput = new ManagerInput();
     _managerMap = new ManagerMap("test");
 }
コード例 #3
0
ファイル: Collision.cs プロジェクト: Uhha/Zelda
 public Collision(ManagerMap managerMap)
 {
     _managerMap = managerMap;
 }