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

12 lines
244 B
C#

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