iw4x-client/src/Components/Modules/Dedicated.hpp

19 lines
273 B
C++
Raw Normal View History

2015-12-26 21:56:00 -05:00
namespace Components
{
class Dedicated : public Component
{
public:
Dedicated();
const char* GetName() { return "Dedicated"; };
static bool IsDedicated();
private:
static Dvar::Var Dedi;
2015-12-29 14:12:26 -05:00
static void MapRotate();
2015-12-26 21:56:00 -05:00
static void InitDedicatedServer();
};
}