Files
MonoGame.Extended/Source/MonoGame.Extended.Tests/TestGraphicsDevice.cs
T

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())
{
}
}
}