blob: e26dff9bf8c8267257f9f6cb2f4aad115ecde673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <game/client/component.hpp>
class MOTD : public COMPONENT
{
public:
// motd
int64 server_motd_time;
char server_motd[900]; // FUGLY
virtual void on_reset();
virtual void on_render();
virtual void on_message(int msgtype, void *rawmsg);
virtual bool on_input(INPUT_EVENT e);
};
|