Danmaku_no_Kyojin.BulletEngine.MoverManager.Update C# (CSharp) Method

Update() public method

すべてのMoverの行動を実行する
public Update ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
return void
        public void Update(GameTime gameTime)
        {
            for (int i = 0; i < movers.Count; i++)
            {
                movers[i].Update(gameTime);
            }
        }