mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 21:59:16 +00:00
12 lines
323 B
C#
12 lines
323 B
C#
|
using QSB.Messaging;
|
|||
|
|
|||
|
namespace QSB.SatelliteSync.Messages
|
|||
|
{
|
|||
|
internal class SatelliteProjectorSnapshotMessage : QSBBoolMessage
|
|||
|
{
|
|||
|
public SatelliteProjectorSnapshotMessage(bool forward) => Value = forward;
|
|||
|
|
|||
|
public override void OnReceiveRemote() => SatelliteProjectorManager.Instance.RemoteTakeSnapshot(Value);
|
|||
|
}
|
|||
|
}
|