mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-27 03:35:20 +00:00
17 lines
350 B
C#
17 lines
350 B
C#
using QSB.EchoesOfTheEye.Sarcophagus.Messages;
|
|
using QSB.Messaging;
|
|
using QSB.WorldSync;
|
|
|
|
namespace QSB.EchoesOfTheEye.Sarcophagus.WorldObjects;
|
|
|
|
public class QSBSarcophagus : WorldObject<SarcophagusController>
|
|
{
|
|
public override void SendInitialState(uint to)
|
|
{
|
|
if (AttachedObject._isOpen)
|
|
{
|
|
this.SendMessage(new OpenMessage());
|
|
}
|
|
}
|
|
}
|