Files
2025TapTapGameJam/Assets/Script/Gameplay/Map/MapFlagManager.cs

13 lines
226 B
C#
Raw Normal View History

2025-10-15 21:31:13 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using Core;
using UnityEngine;
namespace Map
{
public class MapFlagManager : MonoSingleton<MapFlagManager>
{
public MapFlag StartFlag;
}
}