shooter/Source.cpp

22 lines
582 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;
2022-02-23 07:51:53 +03:00
// Optimal for standard monitors:
//game.create(720, 480, ShooterConsts::PROJECT_NAME, true);
//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:
game.create(2048, 1152, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR);
2021-11-13 18:30:12 +03:00
//game.create(3072, 1920, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR);
2021-09-13 15:53:43 +03:00
return 0;
}