sneak/Jumpy.Shared/IWindow.cs
Colin McMillen a33c4d90fd Make IWindow interface & make fullscreen work in UWP & OpenGL.
GitOrigin-RevId: 17e3e115481779249f59d68acab6325a78592eaf
2020-02-13 14:39:48 -05:00

8 lines
172 B
C#

using Microsoft.Xna.Framework;
namespace Jumpy {
public interface IWindow {
void SetFullScreen(bool fullScreen, Game game, GraphicsDeviceManager graphics);
}
}