Rename IGraphicsDevice to IPlatformWindow.

This commit is contained in:
Paul Chote
2018-06-05 19:07:26 +00:00
parent 72c0e344ad
commit 28c8089bc7
6 changed files with 11 additions and 11 deletions

View File

@@ -16,9 +16,9 @@ namespace OpenRA.Platforms.Default
{
public class DefaultPlatform : IPlatform
{
public IGraphicsDevice CreateGraphics(Size size, WindowMode windowMode)
public IPlatformWindow CreateWindow(Size size, WindowMode windowMode)
{
return new Sdl2GraphicsDevice(size, windowMode);
return new Sdl2PlatformWindow(size, windowMode);
}
public ISoundEngine CreateSound(string device)