This is a real-time battling game. In this game, you can talk with others, battle with others, and buy goods to improve your fighting power. To find more, see Rules.
Some of the screenshots:
The project utilize C/S Architecture, thus consists of a client and a server.
git clone https://github.com/ShelpAm/little-sb.git
cd little-sb
xmake build
To build client or server separately:
xmake build little-sb-client # Builds the client
xmake build little-sb-server # Builds the server
To run the project, use:
xmake run little-sb-client # Runs the client
xmake run little-sb-server # Runs the server
To develop the project in an IDE other than xmake, use the following commands:
xmake project -k vsxmake
.xmake project -k cmake
.xmake project -k make
.xmake project -k ninja
.xmake project -k compile_commands
.For more information on available options, use the following command:
xmake project --help