1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-03 05:43:37 +02:00
MLEM/Tests/Stub/StubGraphics.cs
2020-07-31 17:14:25 +02:00

10 lines
267 B
C#

using Microsoft.Xna.Framework.Graphics;
namespace Tests.Stub {
public class StubGraphics : GraphicsDevice {
public StubGraphics() :
base(GraphicsAdapter.DefaultAdapter, GraphicsProfile.Reach, new PresentationParameters()) {
}
}
}