Ballz is a 2D game similar to Worms. It is written in C# and MonoGame. It is tested on Windows and Linux. Other platforms might work. See below for build instructions.
The game is currently under development. Basic gameplay and multiplayer are working.
Linux / OSX | Windows |
---|---|
On Windows, you need Visual Studio 2015.
On Linux, you need dev libraries of:
- Mono >=4.3 (.net 4.6)
- Nuget
- OpenAL
- SDL2 (including libSDL-mixer)
Make sure the git submodules are updated.
Apart from the requirements listed above you should not need anything special to run the game. The build steps follow the usual procedure with .NET projects. In Visual Studio or MonoDevelop, you should be able to build and run everything without any further steps.
On Linux, you can also build from the command line:
nuget restore && xbuild
The binaries will be written to Ballz.Core/bin/Debug/
. Use mono Ballz.exe
in that directory to run the game.