mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-30 12:32:55 +00:00
12 lines
398 B
C#
12 lines
398 B
C#
using QSB.Messaging;
|
|
using QSB.StationaryProbeLauncherSync.WorldObjects;
|
|
|
|
namespace QSB.StationaryProbeLauncherSync.Messages;
|
|
|
|
public class StationaryProbeLauncherMessage : QSBWorldObjectMessage<QSBStationaryProbeLauncher, bool>
|
|
{
|
|
public StationaryProbeLauncherMessage(bool inUse) : base(inUse) { }
|
|
|
|
public override void OnReceiveRemote() => WorldObject.OnRemoteUseStateChanged(Data, From);
|
|
}
|