rott/kf_sources/Engine/Classes/LinkedReplicationInfo.uc
2026-07-14 20:27:09 +07:00

17 lines
326 B
Ucode

class LinkedReplicationInfo extends ReplicationInfo
abstract
native;
var LinkedReplicationInfo NextReplicationInfo;
replication
{
// Variables the server should send to the client.
reliable if ( bNetInitial && (Role==ROLE_Authority) )
NextReplicationInfo;
}
defaultproperties
{
NetUpdateFrequency=1
}