mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 16:07:45 +00:00
96d328de9b
For some files that had the Doom Source license attached but saw heavy external contributions over the years I added a special note to license all original ZDoom code under BSD.
11 lines
203 B
C
11 lines
203 B
C
#ifndef __P_TICK__
|
|
#define __P_TICK__
|
|
|
|
// Called by C_Ticker,
|
|
// can call G_PlayerExited.
|
|
// Carries out all thinking of monsters and players.
|
|
void P_Ticker (void);
|
|
bool P_CheckTickerPaused ();
|
|
|
|
|
|
#endif
|