Add screens

This commit is contained in:
Julian
2021-05-14 10:40:55 +02:00
parent ff05d9a81b
commit f54b093615
3 changed files with 38 additions and 4 deletions

15
Screens/MenuScreen.cs Normal file
View File

@@ -0,0 +1,15 @@
namespace MyGame.Screens
{
public class MenuScreen : IScreen
{
public void Update()
{
}
public void Draw()
{
}
}
}