mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-16 09:21:51 +00:00
10 lines
228 B
C
10 lines
228 B
C
|
#ifndef __THINGDEF_H
|
||
|
#define __THINGDEF_H
|
||
|
|
||
|
int ParseExpression (bool _not);
|
||
|
|
||
|
int EvalExpressionI (int id, AActor *self);
|
||
|
float EvalExpressionF (int id, AActor *self);
|
||
|
bool EvalExpressionN (int id, AActor *self);
|
||
|
|
||
|
#endif
|