mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-05 06:49:09 +01:00
10 lines
267 B
C#
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()) {
|
||
|
}
|
||
|
}
|
||
|
}
|