From 18960c4b88ce912e08b12182b835a7de75388b78 Mon Sep 17 00:00:00 2001 From: Julian T Date: Thu, 23 Jul 2020 23:13:55 +0200 Subject: New project structure --- src/main.cpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/main.cpp (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..3c15429 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,23 @@ +#include +#include +#include +#include +#include + +#include + +using namespace std; + +int main() +{ + cout << "Hello World!" << endl; + + sf::RenderWindow window(sf::VideoMode(200, 200), "Yaah working"); + sf::CircleShape shape(100.f); + + window.clear(); + window.draw(shape); + window.display(); + + return 0; +} -- cgit v1.2.3