mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2025-01-09 01:30:46 +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
|