From 247137383d9f59444f4a763eccb468e64caa7f5d Mon Sep 17 00:00:00 2001 From: gered Date: Sun, 25 Aug 2013 13:22:59 -0400 Subject: [PATCH] resizeable window --- Game.SDL2/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Game.SDL2/Program.cs b/Game.SDL2/Program.cs index 894216a..42609d8 100644 --- a/Game.SDL2/Program.cs +++ b/Game.SDL2/Program.cs @@ -9,6 +9,7 @@ namespace Game.SDL2 { var config = new SDLConfiguration(); config.Title = "Test Game"; + config.Resizeable = true; var app = new SDLApplication(); app.Run(new GameApp(), config);