mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-03-12 04:14:08 +00:00
15 lines
296 B
C#
15 lines
296 B
C#
using QSB.Messaging;
|
|
using QSB.Utility;
|
|
using QSB.WorldSync;
|
|
|
|
namespace QSB.EyeOfTheUniverse.Tomb.Messages;
|
|
|
|
public class CloseDoorMessage : QSBMessage
|
|
{
|
|
public override void OnReceiveRemote()
|
|
{
|
|
var mirror = QSBWorldSync.GetUnityObject<EyeMirrorController>();
|
|
mirror._door.Close();
|
|
}
|
|
}
|