#include #include #include "util/easylogging++.h" #include "game/game.h" #include "primitives/circle_object.h" INITIALIZE_EASYLOGGINGPP int main(int argc, char *argv[]) { START_EASYLOGGINGPP(argc, argv); auto game = Game(Renderer::createFullscreen("Holesome")); game.addGameObject(new CircleObject(50, sf::Color::Red)); game.run(); }