Files
MonoGame.Extended/tests/MonoGame.Extended.Tests/TestGraphicsDevice.cs
T
2024-05-18 20:01:37 -04:00

12 lines
307 B
C#

using Microsoft.Xna.Framework.Graphics;
namespace MonoGame.Extended.Tests
{
public class TestGraphicsDevice : GraphicsDevice
{
public TestGraphicsDevice()
: base(GraphicsAdapter.DefaultAdapter, GraphicsProfile.Reach, new PresentationParameters())
{
}
}
}