9 lines
163 B
C#
9 lines
163 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace AlienAttack.MonoGame.GameLoops;
|
|
|
|
internal interface IGameLoop
|
|
{
|
|
void Draw();
|
|
void Update(GameTime gameTime);
|
|
} |