mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-08 09:41:07 +00:00
12 lines
433 B
C#
12 lines
433 B
C#
using QSB.Messaging;
|
|
using QSB.Tools.ProbeLauncherTool.WorldObjects;
|
|
|
|
namespace QSB.Tools.ProbeLauncherTool.Messages;
|
|
|
|
public class StationaryProbeLauncherMessage : QSBWorldObjectMessage<QSBStationaryProbeLauncher, (bool, uint)>
|
|
{
|
|
public StationaryProbeLauncherMessage(bool inUse, uint userID) : base((inUse, userID)) { }
|
|
|
|
public override void OnReceiveRemote() => WorldObject.OnRemoteUseStateChanged(Data.Item1, Data.Item2);
|
|
}
|