KF2-YetAnotherScoreboard/ScoreboardExt/Classes/DamageReplicationInfo.uc

13 lines
294 B
Ucode
Raw Normal View History

2020-01-10 13:14:11 +00:00
class DamageReplicationInfo extends ReplicationInfo;
var KFPlayerController KFPC;
unreliable client function ClientNumberMsg( int Count, vector Pos, class<KFDamageType> Type )
{
2021-05-16 03:37:39 +00:00
ScoreboardExtHUD(KFPC.MyHUD).AddNumberMsg(Count,Pos,Type);
2020-01-10 13:14:11 +00:00
}
defaultproperties
{
bOnlyRelevantToOwner=True
}