mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-26 18:35:34 +00:00
14 lines
350 B
C#
14 lines
350 B
C#
|
using QSB.EchoesOfTheEye.AlarmTotemSync.Messages;
|
|||
|
using QSB.Messaging;
|
|||
|
using QSB.WorldSync;
|
|||
|
|
|||
|
namespace QSB.EchoesOfTheEye.AlarmTotemSync.WorldObjects;
|
|||
|
|
|||
|
public class QSBAlarmTotem : WorldObject<AlarmTotem>
|
|||
|
{
|
|||
|
public override void SendInitialState(uint to)
|
|||
|
{
|
|||
|
this.SendMessage(new SetFaceOpenMessage(AttachedObject._isFaceOpen) { To = to });
|
|||
|
}
|
|||
|
}
|