blob: 9fa561989b7f9c4ad5a57b19bb8be6ec7a1ae2c8 (
plain)
1
2
3
4
5
6
7
8
9
|
using Microsoft.Xna.Framework.Graphics;
namespace TankBattleCore.Objects;
internal interface IScene
{
internal void Update(float dt);
internal void Draw(SpriteBatch spriteBatch);
}
|