중간 저장

This commit is contained in:
wsh
2025-04-04 11:41:23 +09:00
parent 7769886bad
commit 02f318c548
29 changed files with 354 additions and 607 deletions

View File

@@ -1,6 +1,10 @@
namespace XRLib.UI
using XED.Manage;
namespace XRLib.UI
{
public abstract class CanvasBase : UIBase, ISingle
public abstract class CanvasBase : UIBase
{
protected CanvasEventHandler canvasHandler;
public CanvasEventHandler eventHandler { get=>canvasHandler; }
}
}