using System; namespace SemiColinGames { public interface IWorld : IDisposable { void Update(float modelTime, History input); } }