holesome/src/main.cpp
2023-04-27 23:05:19 +02:00

17 lines
386 B
C++

#include <SFML/Graphics.hpp>
#include <iostream>
#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();
}