8 lines
172 B
C#
8 lines
172 B
C#
|
using Microsoft.Xna.Framework;
|
|||
|
|
|||
|
namespace Jumpy {
|
|||
|
public interface IWindow {
|
|||
|
void SetFullScreen(bool fullScreen, Game game, GraphicsDeviceManager graphics);
|
|||
|
}
|
|||
|
}
|