mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-07 13:30:16 +00:00
12 lines
232 B
C
12 lines
232 B
C
|
#ifndef EDATA_H
|
||
|
#define EDATA_H
|
||
|
|
||
|
struct FMapThing;
|
||
|
struct line_t;
|
||
|
|
||
|
void ProcessEDMapthing(FMapThing *mt, int recordnum);
|
||
|
void ProcessEDLinedef(line_t *line, int recordnum);
|
||
|
void ProcessEDSectors();
|
||
|
void LoadMapinfoACSLump();
|
||
|
|
||
|
#endif
|