using Cryville.Crtr.Browsing.Actions; using Cryville.Crtr.Config; using Cryville.Crtr.Config.UI; namespace Cryville.Crtr.Browsing.UI { internal class SettingsBrowser : ResourceBrowser { protected virtual void Awake() { GetComponent().Adapter = new DefaultPropertyMasterAdapter(Settings.Default); } public override void OnItemClicked(int index) { } public override void InvokeAction(IResourceAction action) { } internal override void OnActionsChanged() { } } }