mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-19 17:01:33 +00:00
15 lines
207 B
C
15 lines
207 B
C
|
|
||
|
#ifndef T_FS_H
|
||
|
#define T_FS_H
|
||
|
|
||
|
// global FS interface
|
||
|
|
||
|
struct MapData;
|
||
|
class AActor;
|
||
|
|
||
|
void T_PreprocessScripts();
|
||
|
void T_LoadScripts(MapData * map);
|
||
|
void T_AddSpawnedThing(AActor * );
|
||
|
|
||
|
#endif
|