mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-24 13:01:10 +00:00
9 lines
262 B
C
9 lines
262 B
C
#ifndef G_BREAKABLE_H_
|
|
#define G_BREAKABLE_H_
|
|
|
|
void InitBBrush(gentity_t* ent);
|
|
void breakable_use(gentity_t* self, gentity_t* other, gentity_t* activator);
|
|
void breakable_pain(gentity_t* self, gentity_t* attacker, int32_t damage);
|
|
|
|
#endif /* G_BREAKABLE_H_ */
|
|
|