mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
21 lines
489 B
C#
21 lines
489 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace MonoGame.Extended.Tests
|
|
{
|
|
public class TestGame : Game
|
|
{
|
|
private readonly GraphicsDeviceManager _graphicsDeviceManager;
|
|
|
|
public TestGame()
|
|
{
|
|
_graphicsDeviceManager = new GraphicsDeviceManager(this);
|
|
RunOneFrame();
|
|
}
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
_graphicsDeviceManager.Dispose();
|
|
base.Dispose(disposing);
|
|
}
|
|
}
|
|
} |