blob: 6648a1fe738df64b79daa98f0c855a85a6dd0985 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SERVER_UNLOADER_HH
#define SERVER_UNLOADER_HH 1
#pragma once
class Dimension;
namespace unloader
{
void init(void);
void init_late(void);
void fixed_update_late(Dimension* dimension);
} // namespace unloader
#endif // SERVER_UNLOADER_HH
|