2026-02-26 14:06:27 +00:00
|
|
|
|
|
|
|
|
using Godot;
|
|
|
|
|
using Rokojori;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2026-02-26 14:06:27 +00:00
|
|
|
namespace Rokojori;
|
|
|
|
|
|
|
|
|
|
[Tool]
|
|
|
|
|
[GlobalClass]
|
|
|
|
|
public abstract partial class UIAppSettingHandler:UIRegion
|
|
|
|
|
{
|
|
|
|
|
[Export]
|
|
|
|
|
public AppSetting appSetting;
|
|
|
|
|
|
|
|
|
|
public abstract void LoadSetting();
|
|
|
|
|
|
|
|
|
|
public abstract void FocusHandler();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|