]> git.lizzy.rs Git - dragonblocks_alpha.git/blobdiff - src/server/server.h
Add configuration files for client and server
[dragonblocks_alpha.git] / src / server / server.h
index a565c766266868799fbb73a2b3405eff3b13beb9..3a2ca84c04435b07da417c0b8df8333e00fae134 100644 (file)
@@ -16,9 +16,6 @@ typedef struct
        List clients;                   // Client * -> NULL map with all connected clients
        pthread_rwlock_t players_rwlck; // lock to protect player list
        List players;                   // char * -> Client * map with clients that have finished auth
-       struct {
-               u32 simulation_distance;    // perimeter of the cube that players can see blocks in is simulation_distance * 2 + 1
-       } config;                       // configuration, ToDo: read from config file
 } Server;
 
 typedef struct Client