]> git.lizzy.rs Git - dragonblocks_alpha.git/blob - README.md
Remove obsolete 'Client commands' section from README.md
[dragonblocks_alpha.git] / README.md
1 # Dragonblocks alpha
2
3 ## Usage
4 ```bash
5 ./DragonblocksServer <port>
6 ./Dragonblocks <address> <port>
7 ```
8
9 The server will save the map to a file named "map" in the directory it is run in. It will also load the map from there at startup, given that the file exists.
10
11 ## Nodes:
12 - `unloaded`: used for nodes in unloaded mapblocks
13 - `air`: default node in newly generated mapblocks
14 - `dirt`
15 - `grass`
16 - `stone`
17 - `invalid`: unknown nodes received from server
18
19 Interrupt handlers for SIGINT und SIGTERM are implemented.
20
21 ## Dependencies
22
23 The client depends on GLFW3, OpenGL and GLEW.
24 ```bash
25 sudo apt install libgl1-mesa-dri libglfw3 libglew2.1
26 ```