mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-25 15:35:22 +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 });
|
|
}
|
|
}
|