mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-15 15:09:29 +00:00
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())
|
|
{
|
|
}
|
|
}
|
|
} |