コード例 #1
0
ファイル: Ship.cs プロジェクト: nagysa1313/Cannonball
        public override void Update(GameTime gameTime)
        {
            obj.Update(gameTime);

            foreach (var thruster in thrusters)
            {
                thruster.Update(gameTime);
            }
        }