mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-17 18:01:39 +00:00
16 lines
258 B
C++
16 lines
258 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 * );
|
|
bool T_RunScript(int snum, AActor * t_trigger);
|
|
void FS_Close();
|
|
|
|
#endif
|