ajh123-archives / HistorySurvival-oldold

Simple 3d multiplayer game that will be on earth

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

History Survival

A simple 3d multiplayer game using

Run and build Locally with CMAKE

Clone the project

  git clone --recurse-submodules https://github.com/ajh123-development/HistorySurvival

Go to the project directory

  cd HistorySurvival

Compile and run the client in Release

  mkdir build
  cd build
  cmake ..
  cmake --build . --config Release

  #Runing
  cd ..
  ./build/game-client
  #Or on windows use if using vs 2022 or > as the cmake generator
  ./build/Release/game-client

Compile and run the server in Release

  mkdir build
  cd build
  cmake -D BUIlD_SERVER=ON ..
  cmake --build . --config Release

  #Runing
  cd ..
  ./build/game-server
  #Or on windows use if using vs 2022 or > as the cmake generator
  ./build/Release/game-server

Authors

About

Simple 3d multiplayer game that will be on earth


Languages

Language:C++ 92.7%Language:CMake 7.3%