summaryrefslogtreecommitdiffstats
path: root/src/PatchedClonkControl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/PatchedClonkControl.hpp')
-rw-r--r--src/PatchedClonkControl.hpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/PatchedClonkControl.hpp b/src/PatchedClonkControl.hpp
index 2469178..8ec6cff 100644
--- a/src/PatchedClonkControl.hpp
+++ b/src/PatchedClonkControl.hpp
@@ -1,11 +1,17 @@
-#ifndef PATCHEDCLONKCONTROL_HPP
-#define PATCHEDCLONKCONTROL_HPP
+#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;
};
-
-#endif // PATCHEDCLONKCONTROL_HPP \ No newline at end of file