This commit is contained in:
CortexCore
2025-02-26 15:34:27 +08:00
parent b07ae4fea7
commit 54f40090c9
7 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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;
}
}