mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-05 06:49:09 +01:00
12 lines
214 B
C#
12 lines
214 B
C#
|
using Microsoft.Xna.Framework;
|
||
|
|
||
|
namespace Tests.Stub {
|
||
|
public class StubGame : Game {
|
||
|
|
||
|
public StubGame() {
|
||
|
new GraphicsDeviceManager(this);
|
||
|
this.RunOneFrame();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|