#ifndef GAMESERVER_H #define GAMESERVER_H #include "common/world/World.h" #include "utils/Clock.h" namespace Game { extern Clock ticksPerSecond; extern BlockRegistry blocks; void stop(); bool isRunning(); void testWorld(); World& getTestWorld(); void tick(); } #endif