summaryrefslogtreecommitdiffstats
path: root/src/game/server/globals.cc
blob: 883588b43df32725e067926140de82b1e62867cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "server/pch.hh"

#include "server/globals.hh"

#include "core/config.hh"

#include "shared/protocol.hh"

Config globals::server_config;

ENetHost* globals::server_host;

bool globals::is_running;
unsigned int globals::tickrate;
std::uint64_t globals::tickrate_dt;

Dimension* globals::spawn_dimension;
std::unordered_map<std::string, Dimension*> globals::dimensions;