#pragma once #include "ClonkInterface.hpp" class PatchedClonkControl : public ClonkControlInterface { public: PatchedClonkControl(); void abortCountdown() override; void alert() override; void kick(const ClientInfo& client, const QString& reason = "") override; void rawCommand(const QString& command) override; void serverMessage(const QString& msg, bool action = false) override; void setCommand(const QString& command) override; void setCountdown(unsigned int countdown) override; void watchdog(const QString& id) override; };