7 lines
157 B
C#
7 lines
157 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SemiColinGames {
|
|||
|
public interface IScene : IDisposable {
|
|||
|
void Draw(bool isRunningSlowly, IWorld iworld, bool paused);
|
|||
|
}
|
|||
|
}
|