├── .gitignore ├── LICENSE ├── Project247.sln ├── Project247.vcxproj ├── Project247.vcxproj.filters ├── README.md ├── deps └── opengl │ └── gl │ ├── glext.h │ └── wglext.h └── src ├── Main.cpp ├── Main.h ├── Window.cpp └── Window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/LICENSE -------------------------------------------------------------------------------- /Project247.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/Project247.sln -------------------------------------------------------------------------------- /Project247.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/Project247.vcxproj -------------------------------------------------------------------------------- /Project247.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/Project247.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/README.md -------------------------------------------------------------------------------- /deps/opengl/gl/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/deps/opengl/gl/glext.h -------------------------------------------------------------------------------- /deps/opengl/gl/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/deps/opengl/gl/wglext.h -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/src/Main.h -------------------------------------------------------------------------------- /src/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/src/Window.cpp -------------------------------------------------------------------------------- /src/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lazarus247/project247/HEAD/src/Window.h --------------------------------------------------------------------------------