mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
12 lines
239 B
C++
12 lines
239 B
C++
#ifndef __G_HUB_H
|
|
#define __G_HUB_H
|
|
|
|
struct cluster_info_t;
|
|
struct wbstartstruct_t;
|
|
class FSerializer;
|
|
|
|
void G_SerializeHub (FSerializer &file);
|
|
void G_LeavingHub(int mode, cluster_info_t * cluster, struct wbstartstruct_t * wbs);
|
|
|
|
#endif
|
|
|