Restructure resource browsers.

This commit is contained in:
2023-11-23 00:50:37 +08:00
parent d7a38416aa
commit 54f75781f3
5 changed files with 51 additions and 43 deletions

View File

@@ -3,8 +3,7 @@ using Cryville.Crtr.Config.UI;
namespace Cryville.Crtr.Browsing.UI {
internal class SettingsBrowser : ResourceBrowser {
protected override void Awake() {
base.Awake();
protected virtual void Awake() {
GetComponent<PropertyMasterPanel>().Adapter = new DefaultPropertyMasterAdapter(Settings.Default);
}
}