Files
LuaCsForBarotraumaEP/Barotrauma/BarotraumaClient/ClientSource/LuaCs/Configuration/ISettingControl.cs
2026-02-07 20:10:54 -05:00

13 lines
285 B
C#

using System;
namespace Barotrauma.LuaCs.Configuration;
public interface ISettingControl : ISettingBase
{
event Action<ISettingControl> OnDown;
KeyOrMouse Value { get; }
bool IsAssignable(KeyOrMouse value);
bool TrySetValue(KeyOrMouse value);
bool IsDown();
}