mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-04 02:47:22 +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);
|
|
}
|
|
}
|