mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-04 02:47:22 +00:00
10 lines
301 B
C#
10 lines
301 B
C#
using QSB.EchoesOfTheEye.WineCellar.WorldObjects;
|
|
using QSB.Messaging;
|
|
|
|
namespace QSB.EchoesOfTheEye.WineCellar.Messages;
|
|
|
|
public class WineCellarSwitchMessage : QSBWorldObjectMessage<QSBWineCellarSwitch>
|
|
{
|
|
public override void OnReceiveRemote() => WorldObject.AttachedObject.OnPressInteract();
|
|
}
|