WarTornLands.Counter.CounterManager.Update C# (CSharp) 메소드

Update() 공개 메소드

public Update ( GameTime gameTime ) : void
gameTime Microsoft.Xna.Framework.GameTime
리턴 void
        public void Update(GameTime gameTime)
        {
            foreach (Counter c in _counters)
                c.Update(gameTime);
        }