]> git.lizzy.rs Git - dragonblocks_alpha.git/blob - node.h
Server can handle multiple clients
[dragonblocks_alpha.git] / node.h
1 #ifndef _NODE_H_
2 #define _NODE_H_
3
4 typedef enum
5 {
6         NODE_UNLOADED,          // Used for nodes in unloaded blocks
7         NODE_AIR,
8         NODE_GRASS,
9         NODE_DIRT,
10         NODE_STONE,
11         NODE_INVALID,           // Used for invalid nodes sent by server (caused by outdated clients)
12 } Node;
13
14 #endif