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