mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
* Tiled Rework * fix failing tests * really fix failing tests
12 lines
307 B
C#
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())
|
|
{
|
|
}
|
|
}
|
|
} |