From 2993bdefd1702dce90b7f4e29afbfaa750b47fe6 Mon Sep 17 00:00:00 2001 From: TriantaTV <56975502+TriantaTV@users.noreply.github.com> Date: Fri, 6 May 2022 00:48:51 -0500 Subject: [PATCH] Removed app for cleanup --- app/main.cpp | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 app/main.cpp diff --git a/app/main.cpp b/app/main.cpp deleted file mode 100644 index 4eacd53..0000000 --- a/app/main.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include -#include -#include -#include -#include -using namespace std; - -int main() -{ - int videoSizeHorizontal, videoSizeVertical; - videoSizeHorizontal = 1280; - videoSizeVertical = 720; - sf::RenderWindow window(sf::VideoMode(videoSizeHorizontal, videoSizeVertical), "SnakePlusPlus"); - while (window.isOpen()) - { - while (window.pollEvent(event)) - { - if ((event.type == sf::Event::Closed) || (sf::Keyboard::isKeyPressed(sf::Keyboard::Escape))) - window.close(); - } - } -}