mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 12:08:52 +00:00
11 lines
262 B
C#
11 lines
262 B
C#
|
using QSB.Messaging;
|
|||
|
using QSB.ShipSync.WorldObjects;
|
|||
|
|
|||
|
namespace QSB.ShipSync.Messages.Component
|
|||
|
{
|
|||
|
internal class ComponentDamagedMessage : QSBWorldObjectMessage<QSBShipComponent>
|
|||
|
{
|
|||
|
public override void OnReceiveRemote() => WorldObject.SetDamaged();
|
|||
|
}
|
|||
|
}
|