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