blob: 8bd6d458b0716db4a70eac972eb1b8cf691bf0cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
client/client.h
This file is part of the Osirion project and is distributed under
the terms and conditions of the GNU General Public License version 2
*/
#ifndef __INCLUDED_CLIENT_H__
#define __INCLUDED_CLIENT_H__
#include "core/application.h"
/// client part of the engine
namespace client {
/// client application implementation
class Client : public core::Application
{
public:
/// initialize the client
virtual void init(int count, char **arguments);
/// run the client
virtual void run();
/// shutdown the client
virtual void shutdown();
/// quit the client
virtual void quit(int status);
/// sound notifications from the core
virtual void notify_sound(const char * name);
/// text notifications from the core
virtual void notify_message(std::string const & message);
};
/// the client main loop
void client_main(int count, char **arguments);
Client *client();
}
#endif // __INCLUDED_CLIENT_H__
|