[O] ResetTouchAfterTrack -> ResetTouch, add press key to reset (#93)

* [O] ResetTouchAfterTrack -> ResetTouch, add press key to reset

* fix

* update

* fix: Remove not work

---------

Co-authored-by: Menci <mencici@msn.com>
This commit is contained in:
凌莞~(=^▽^=)
2024-11-30 05:29:30 +08:00
committed by GitHub
parent bed1b85319
commit d5a9c98ff9
12 changed files with 161 additions and 24 deletions

View File

@@ -5,5 +5,7 @@ public interface IConfigView
public void SetValue(string path, object value);
public T GetValueOrDefault<T>(string path, T defaultValue = default);
public bool TryGetValue<T>(string path, out T resultValue);
public bool Remove(string path);
public string ToToml();
public IConfigView Clone();
}