mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2025-02-09 14:30:48 +00:00
14 lines
207 B
C++
14 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
|