using System; namespace SemiColinGames { public interface IScene : IDisposable { void Draw(bool isRunningSlowly, IWorld iworld, bool paused); } }