WarTornLands.Counter.CounterManager.Update C# (CSharp) Method

Update() public method

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