blob: 544f26b917a65c9ff72f02ceac9d07c36627516b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
game/game.h
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
#ifndef __INCLUDED_GAME_H__
#define __INCLUDED_GAME_H__
namespace game {
void register_modules(bool register_client_modules=false);
}
#endif // __INCLUDED_GAME_H__
|