10 lines
115 B
C#
10 lines
115 B
C#
|
|
namespace MyGame.Screens
|
|
{
|
|
public interface IScreen
|
|
{
|
|
void Update();
|
|
void Draw();
|
|
}
|
|
}
|