blob: a9d79e48f0dbb36047215d92c00352208c1aa334 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef SHARED_GAME
#define SHARED_GAME 1
#pragma once
namespace shared_game
{
void init(int argc, char** argv);
void deinit(void);
} // namespace shared_game
#endif // SHARED_GAME
|