using Microsoft.Xna.Framework; namespace AlienAttack.MonoGame.GameLoops; internal interface IGameLoop { void Draw(GameTime gameTime); void Update(GameTime gameTime); }