File size: 563 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
class ManBase extends DayZPlayerImplement // PSOVIS originaly extends Man
{
void ManBase()
{
//Print("PSOVIS: this is ManBase");
}
// -------------------------------------------------------------------------
// ! On Client, 'true' if this instance of a character is controlled by the player(ie. not a remote player)
bool IsControlledPlayer()
{
return( GetGame().GetPlayer() == this );
}
// -------------------------------------------------------------------------
override void OnVariablesSynchronized()
{
super.OnVariablesSynchronized();
}
} |