sneak/Shared/IDisplay.cs
Colin McMillen 096f577e61 change namespace to SemiColinGames
GitOrigin-RevId: 3c4e116e770edfcca7f661b3f0d74bb312aa6a04
2020-02-13 14:48:35 -05:00

9 lines
211 B
C#

using Microsoft.Xna.Framework;
namespace SemiColinGames {
public interface IDisplay {
void Initialize(GameWindow window, GraphicsDeviceManager graphics);
void SetFullScreen(bool fullScreen);
}
}