mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-07 21:41:42 +00:00
db5723997c
SVN r1224 (trunk)
15 lines
303 B
C
15 lines
303 B
C
#ifndef __G_HUB_H
|
|
#define __G_HUB_H
|
|
|
|
#include <stdio.h>
|
|
|
|
struct PNGHandle;
|
|
struct cluster_info_t;
|
|
struct wbstartstruct_t;
|
|
|
|
void G_WriteHubInfo (FILE *file);
|
|
void G_ReadHubInfo (PNGHandle *png);
|
|
void G_LeavingHub(int mode, cluster_info_t * cluster, struct wbstartstruct_t * wbs);
|
|
|
|
#endif
|
|
|