Shared: Give base_player class a constructor.
This commit is contained in:
parent
6c59c47c93
commit
4964ba3859
2 changed files with 8 additions and 0 deletions
|
@ -72,6 +72,8 @@ base_player
|
|||
/* vehicle info */
|
||||
entity vehicle;
|
||||
|
||||
void(void) base_player;
|
||||
|
||||
#ifdef CLIENT
|
||||
int sequence;
|
||||
float pitch;
|
||||
|
|
|
@ -332,3 +332,9 @@ base_player::SendEntity(entity ePEnt, float fChanged)
|
|||
return (1);
|
||||
}
|
||||
#endif
|
||||
|
||||
void
|
||||
base_player::base_player(void)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue