using Microsoft.Xna.Framework; namespace V3.Screens { /// /// An object that can be updated. /// public interface IUpdateable { /// /// Updates the status of this object. /// /// a snapshot of the game time void Update(GameTime gameTime); } }