diff options
Diffstat (limited to 'TankBattleCore/Objects/Scene.cs')
| -rw-r--r-- | TankBattleCore/Objects/Scene.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/TankBattleCore/Objects/Scene.cs b/TankBattleCore/Objects/Scene.cs new file mode 100644 index 0000000..9fa5619 --- /dev/null +++ b/TankBattleCore/Objects/Scene.cs @@ -0,0 +1,9 @@ +using Microsoft.Xna.Framework.Graphics; + +namespace TankBattleCore.Objects; + +internal interface IScene +{ + internal void Update(float dt); + internal void Draw(SpriteBatch spriteBatch); +}
\ No newline at end of file |
