summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/p_tick.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/p_tick.h')
-rw-r--r--apps/plugins/doom/p_tick.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/doom/p_tick.h b/apps/plugins/doom/p_tick.h
index 5a495166b3..f6e497a4ef 100644
--- a/apps/plugins/doom/p_tick.h
+++ b/apps/plugins/doom/p_tick.h
@@ -54,12 +54,13 @@ void P_UpdateThinker(thinker_t *thinker); // killough 8/29/98
54void P_SetTarget(mobj_t **mo, mobj_t *target); // killough 11/98 54void P_SetTarget(mobj_t **mo, mobj_t *target); // killough 11/98
55 55
56// killough 8/29/98: threads of thinkers, for more efficient searches 56// killough 8/29/98: threads of thinkers, for more efficient searches
57typedef enum { 57enum {
58 th_misc, 58 th_misc,
59 th_friends, 59 th_friends,
60 th_enemies, 60 th_enemies,
61 NUMTHCLASS 61 NUMTHCLASS
62} th_class; 62};
63typedef unsigned th_class;
63 64
64extern thinker_t thinkerclasscap[]; 65extern thinker_t thinkerclasscap[];
65 66