Files
MonoGame.Extended/Source/Tests/MonoGame.Extended.Tests/TestGraphicsDevice.cs
T
Lucas Girouard-Stranks 9e359fb750 Tiled Rework (#331)
* Tiled Rework

* fix failing tests

* really fix failing tests
2017-01-18 20:46:38 +10: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())
{
}
}
}