vectozavr-shooter/Source.cpp

20 lines
501 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;
2021-10-29 23:44:37 +03:00
int main() {
2021-09-13 15:53:43 +03:00
Shooter game;
game.create(1280, 720, ShooterConsts::PROJECT_NAME, false);
2021-10-16 20:22:55 +03:00
//game.create(1920, 1080, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR, sf::Style::Fullscreen);
2021-09-13 15:53:43 +03:00
//game.create(2048, 1152, ShooterConsts::PROJECT_NAME, false);
2021-11-01 21:38:57 +03:00
//game.create(3072, 1920, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR, sf::Style::Fullscreen);
2021-09-13 15:53:43 +03:00
return 0;
}