1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-07-01 08:26:36 +02:00
MLEM/Tests/Stub/StubGraphics.cs

10 lines
267 B
C#
Raw Normal View History

2020-07-31 17:14:25 +02:00
using Microsoft.Xna.Framework.Graphics;
namespace Tests.Stub {
public class StubGraphics : GraphicsDevice {
public StubGraphics() :
base(GraphicsAdapter.DefaultAdapter, GraphicsProfile.Reach, new PresentationParameters()) {
}
}
}