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