D3ltaQ's picture
Upload 2197 files
24b81cb verified
raw
history blame contribute delete
563 Bytes
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();
}
}