12 lines
392 B
C#
Raw Normal View History

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.OnUseStateChanged(Data, From);
}