sneak/Jumpy.Shared/IWindow.cs

8 lines
172 B
C#
Raw Normal View History

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