blob: 8ec6cff2d7cc619d09642459972c7db2663d8df9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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;
};
|