Added basic Window interface

This commit is contained in:
Robert 2020-06-15 20:03:08 +02:00
parent a027bdf802
commit db99718802
99 changed files with 38994 additions and 0 deletions

8
src/example/main.cpp Normal file
View file

@ -0,0 +1,8 @@
#include "Window.hpp"
int main(int argc, char* argv[])
{
sf::IWindow window;
return 0;
}