sneak/Shared/IScene.cs

7 lines
157 B
C#
Raw Normal View History

2020-07-15 15:48:30 +00:00
using System;
namespace SemiColinGames {
public interface IScene : IDisposable {
void Draw(bool isRunningSlowly, IWorld iworld, bool paused);
}
}