Net.Like.Xue.Tokyo/Assets/Artists/Scripts/UX/UXMap.cs

23 lines
530 B
C#
Raw Normal View History

2024-11-03 16:42:23 +08:00
using System.Collections;
using System.Collections.Generic;
using BITKit.UX;
using Cysharp.Threading.Tasks;
2025-03-03 18:44:00 +08:00
using Net.Project.B.UX;
2024-11-03 16:42:23 +08:00
using UnityEngine;
using UnityEngine.UIElements;
namespace Net.Like.Xue.Tokyo.UX
{
2025-03-03 18:44:00 +08:00
public class UXMap : UIToolKitPanel,IUXMap
2024-11-03 16:42:23 +08:00
{
public UXMap(IUXService uxService) : base(uxService)
{
}
protected override string DocumentPath => "ux_map";
public override bool CloseWhenClickOutside => true;
2025-02-26 15:34:59 +08:00
public override bool AllowCursor => true;
2024-11-03 16:42:23 +08:00
}
}