12 lines
293 B
C#
Raw Normal View History

2022-04-16 21:31:01 +01:00
using QSB.Messaging;
using QSB.ShipSync.Messages;
using QSB.WorldSync;
namespace QSB.ShipSync.WorldObjects;
2023-07-28 19:30:57 +01:00
public class QSBShipLight : WorldObject<ShipLight>
2022-04-16 21:31:01 +01:00
{
public override void SendInitialState(uint to) =>
this.SendMessage(new ShipLightMessage(AttachedObject._on) { To = to });
2022-04-16 21:31:01 +01:00
}