shooter/Source.cpp

19 lines
486 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;
2021-10-25 04:42:24 +03:00
game.create(1280, 720, ShooterConsts::PROJECT_NAME);
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
2021-10-16 20:22:55 +03:00
//game.create(2048, 1152, ShooterConsts::PROJECT_NAME);
2021-10-25 04:42:24 +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;
}