1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-11-05 06:49:09 +01:00
MLEM/Tests/Stub/StubGame.cs

12 lines
214 B
C#
Raw Normal View History

using Microsoft.Xna.Framework;
namespace Tests.Stub {
public class StubGame : Game {
public StubGame() {
new GraphicsDeviceManager(this);
this.RunOneFrame();
}
}
}