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