mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-30 12:32:55 +00:00
18 lines
566 B
C#
18 lines
566 B
C#
|
using QSB.Messaging;
|
|||
|
using QSB.Utility.Deterministic;
|
|||
|
|
|||
|
namespace QSB.WorldSync.Messages;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Sent by clients to the server after receiving a RequestHashBreakdown message.
|
|||
|
/// </summary>
|
|||
|
public class WorldObjectInfoMessage : QSBMessage<(string fullPath, string managerName)>
|
|||
|
{
|
|||
|
public WorldObjectInfoMessage(IWorldObject obj, string managerName) : base((obj.AttachedObject.DeterministicPath(), managerName)) => To = 0;
|
|||
|
|
|||
|
public override void OnReceiveRemote()
|
|||
|
{
|
|||
|
HashErrorAnalysis.Instances[Data.managerName].OnReceiveMessage(Data.fullPath);
|
|||
|
}
|
|||
|
}
|