readme changing

master
Vectozavr 2021-10-25 08:42:24 +07:00
parent 3fa7df24d7
commit 9270c11819
2 changed files with 4 additions and 2 deletions

View File

@ -19,6 +19,8 @@ Source code of simple shooter on [3Dzavr game engine](https://github.com/vectoza
3) Enjoy gaming! 3) Enjoy gaming!
[<h3>How to run the server</h3>](https://github.com/vectozavr/shooter_server)
<h4>Control:</h4> <h4>Control:</h4>
<b>SHIFT</b> - slow motion (this ability is not infinite: its bar is next to hp) <b>SHIFT</b> - slow motion (this ability is not infinite: its bar is next to hp)

View File

@ -9,11 +9,11 @@ using namespace std;
int main() { int main() {
Shooter game; Shooter game;
//game.create(1280, 720, ShooterConsts::PROJECT_NAME); game.create(1280, 720, ShooterConsts::PROJECT_NAME);
//game.create(1920, 1080, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR, sf::Style::Fullscreen); //game.create(1920, 1080, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR, sf::Style::Fullscreen);
//game.create(2048, 1152, ShooterConsts::PROJECT_NAME); //game.create(2048, 1152, ShooterConsts::PROJECT_NAME);
game.create(3072, 1920, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR, sf::Style::Fullscreen); //game.create(3072, 1920, ShooterConsts::PROJECT_NAME, true, Consts::BACKGROUND_COLOR, sf::Style::Fullscreen);
return 0; return 0;
} }