Skip to content

Commit

Permalink
NITWORK: Fix errors lint
Browse files Browse the repository at this point in the history
PATCH
  • Loading branch information
Saverio976 committed Oct 2, 2023
1 parent 7ea86d3 commit 1e2c549
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@

int main()
{
Nitwork::NitworkClient::getInstance().start(4242);
const int port = 4242;
Nitwork::NitworkClient::getInstance().start(port);

Nitwork::NitworkClient::getInstance().addInitMsg();
while (true);
while (true) {};
return 0;
}

// #include "SceneManager.hpp"
//
Expand Down

0 comments on commit 1e2c549

Please sign in to comment.