mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-25 05:11:58 +00:00
28 lines
481 B
C++
28 lines
481 B
C++
#ifndef MAPENTS_UTIL_qh
|
|
#define MAPENTS_UTIL_qh 1
|
|
|
|
#define SPAWNFLAGS_CHECK_ITEMS 16384
|
|
#define SPAWNFLAGS_TAKE_ITEMS 32768
|
|
|
|
@extern {
|
|
|
|
.void() th_activate;
|
|
|
|
void() util_map_entity_init;
|
|
void() util_map_entity_cull;
|
|
void() util_map_entity_drop;
|
|
|
|
void() util_set_movedir;
|
|
|
|
float() util_check_targets;
|
|
float() util_use_targets;
|
|
|
|
float(entity e) is_living;
|
|
float(entity e) is_solid;
|
|
float(entity e) is_teleportable;
|
|
|
|
float(entity ent1, entity ent2) util_entities_touch;
|
|
|
|
};
|
|
|
|
#endif
|