2022-08-26 18:21:13 -04:00
|
|
|
|
using QSB.Messaging;
|
2022-08-27 11:11:49 -07:00
|
|
|
|
using QSB.Tools.ProbeLauncherTool.WorldObjects;
|
2022-08-26 18:21:13 -04:00
|
|
|
|
|
2022-08-27 11:11:49 -07:00
|
|
|
|
namespace QSB.Tools.ProbeLauncherTool.Messages;
|
2022-08-26 18:21:13 -04:00
|
|
|
|
|
2022-08-27 02:28:10 -04:00
|
|
|
|
public class StationaryProbeLauncherMessage : QSBWorldObjectMessage<QSBStationaryProbeLauncher, (bool, uint)>
|
2022-08-26 18:21:13 -04:00
|
|
|
|
{
|
2022-08-27 02:28:10 -04:00
|
|
|
|
public StationaryProbeLauncherMessage(bool inUse, uint userID) : base((inUse, userID)) { }
|
2022-08-26 18:21:13 -04:00
|
|
|
|
|
2022-08-27 02:28:10 -04:00
|
|
|
|
public override void OnReceiveRemote() => WorldObject.OnRemoteUseStateChanged(Data.Item1, Data.Item2);
|
2022-08-26 18:21:13 -04:00
|
|
|
|
}
|