mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-15 08:52:04 +00:00
fae8ed444c
SVN r3124 (trunk)
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
|