mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-24 04:51:12 +00:00
15 lines
246 B
C
15 lines
246 B
C
|
#ifndef G_TRIGGER_H_
|
||
|
#define G_TRIGGER_H_
|
||
|
|
||
|
#include "g_local.h"
|
||
|
|
||
|
/**
|
||
|
* @brief Inits a trigger entity.
|
||
|
*
|
||
|
* Initializes trigger entities.
|
||
|
*
|
||
|
* @param self the trigger entity
|
||
|
*/
|
||
|
void G_Trigger_Init( gentity_t* self );
|
||
|
|
||
|
#endif /* G_TRIGGER_H_ */
|