Files
Net.Like.Xue.Tokyo/Packages-Local/Com.Project.B/World/IWorldMinimapService.cs

16 lines
354 B
C#
Raw Normal View History

2025-06-24 23:49:13 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
using Unity.Mathematics;
namespace Net.Project.B.World
{
public interface IWorldMinimapService
{
public object MinimapObject { get; }
public float2 Offset { get; }
public int Size { get; }
public event Action OnMinimapInitialized;
}
}