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
|
|
|
|
2021-09-19 15:44:31 +03:00
|
|
|
int main() {
|
2021-09-13 15:53:43 +03:00
|
|
|
Shooter game;
|
|
|
|
|
2022-02-23 07:51:53 +03:00
|
|
|
// Optimal for standard monitors:
|
|
|
|
//game.create(720, 480, ShooterConsts::PROJECT_NAME, true);
|
2022-07-11 16:58:05 +03:00
|
|
|
game.create(1280, 720, ShooterConsts::PROJECT_NAME, true);
|
2022-02-23 07:51:53 +03:00
|
|
|
//game.create(1920, 1080, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR, sf::Style::Fullscreen);
|
2021-09-13 15:53:43 +03:00
|
|
|
|
2022-02-23 07:51:53 +03:00
|
|
|
// Optimal for MacBook Pro 16 display:
|
2022-07-11 16:58:05 +03:00
|
|
|
//game.create(2048, 1152, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR);
|
2022-07-07 13:14:00 +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;
|
|
|
|
}
|