vectozavr-shooter/Source.cpp

19 lines
396 B
C++
Raw Normal View History

2021-09-13 15:53:43 +03:00
//
2021-10-09 14:38:24 +03:00
// Created by Ivan Ilin on 06.02.2021.
2021-09-13 15:53:43 +03:00
//
2021-10-02 20:36:07 +03:00
#include "Shooter.h"
2021-09-13 15:53:43 +03:00
using namespace std;
int main() {
2021-09-13 15:53:43 +03:00
Shooter game;
//game.create(1280, 720, "Shooter");
//game.create(1920, 1080, "Shooter", true, {255, 255, 255}, sf::Style::Fullscreen);
game.create(2048, 1152, "Shooter");
//game.create(3072, 1920, "Shooter", true, {255, 255, 255}, sf::Style::Fullscreen);
return 0;
}