diff --git a/README.md b/README.md
index 4e334b7..d605529 100644
--- a/README.md
+++ b/README.md
@@ -19,6 +19,8 @@ Source code of simple shooter on [3Dzavr game engine](https://github.com/vectoza
3) Enjoy gaming!
+[
How to run the server
](https://github.com/vectozavr/shooter_server)
+
Control:
SHIFT - slow motion (this ability is not infinite: its bar is next to hp)
diff --git a/Source.cpp b/Source.cpp
index 97d24ce..e225a1d 100644
--- a/Source.cpp
+++ b/Source.cpp
@@ -9,11 +9,11 @@ using namespace std;
int main() {
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(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;
}
\ No newline at end of file