12 lines
235 B
C#
12 lines
235 B
C#
using System;
|
|
|
|
namespace Barotrauma.LuaCs.Data;
|
|
|
|
public interface ISettingControl : ISettingBase
|
|
{
|
|
event Action<ISettingControl> OnDown;
|
|
KeyOrMouse Value { get; }
|
|
bool TrySetValue(KeyOrMouse value);
|
|
bool IsDown();
|
|
}
|