예제 #1
0
 public void Draw(SpriteBatch spriteBatch)
 {
     foreach (IProjectile projectile in projectiles)
     {
         projectile.Draw(spriteBatch);
     }
     state.Draw(spriteBatch);
 }
예제 #2
0
 /// <inheritdoc/>
 public void Draw()
 {
     oldState.Draw();
 }
예제 #3
0
파일: Player.cs 프로젝트: Group4-CSE/Zelda
 public void Draw(SpriteBatch spriteBatch)
 {
     state.Draw(spriteBatch);
 }