10 lines
301 B
C#
Raw Normal View History

using QSB.EchoesOfTheEye.WineCellar.WorldObjects;
using QSB.Messaging;
2022-09-22 13:02:40 +01:00
namespace QSB.EchoesOfTheEye.WineCellar.Messages;
2023-07-28 19:30:57 +01:00
public class WineCellarSwitchMessage : QSBWorldObjectMessage<QSBWineCellarSwitch>
2022-09-22 13:02:40 +01:00
{
public override void OnReceiveRemote() => WorldObject.AttachedObject.OnPressInteract();
}