Shared: Give base_player class a constructor.

This commit is contained in:
Marco Cawthorne 2021-05-25 08:35:22 +02:00
parent 6c59c47c93
commit 4964ba3859
2 changed files with 8 additions and 0 deletions

View File

@ -72,6 +72,8 @@ base_player
/* vehicle info */
entity vehicle;
void(void) base_player;
#ifdef CLIENT
int sequence;
float pitch;

View File

@ -332,3 +332,9 @@ base_player::SendEntity(entity ePEnt, float fChanged)
return (1);
}
#endif
void
base_player::base_player(void)
{
}