23 lines
530 B
C#
23 lines
530 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using BITKit.UX;
|
|
using Cysharp.Threading.Tasks;
|
|
using Net.Project.B.UX;
|
|
using UnityEngine;
|
|
using UnityEngine.UIElements;
|
|
|
|
namespace Net.Like.Xue.Tokyo.UX
|
|
{
|
|
public class UXMap : UIToolKitPanel,IUXMap
|
|
{
|
|
public UXMap(IUXService uxService) : base(uxService)
|
|
{
|
|
}
|
|
protected override string DocumentPath => "ux_map";
|
|
public override bool CloseWhenClickOutside => true;
|
|
public override bool AllowCursor => true;
|
|
}
|
|
|
|
}
|
|
|