mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 09:32:38 +00:00
18 lines
381 B
C#
18 lines
381 B
C#
using QSB.Messaging;
|
|
using QSB.ShipSync.WorldObjects;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace QSB.ShipSync.Messages;
|
|
|
|
internal class ModuleDetachMessage : QSBWorldObjectMessage<QSBShipDetachableModule>
|
|
{
|
|
public override void OnReceiveRemote()
|
|
{
|
|
WorldObject.AttachedObject.Detach();
|
|
}
|
|
}
|