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