Files
gold_dolphin/unity/Assets/Script/Managers/ManagersMode.cs
2026-06-20 19:35:25 +08:00

17 lines
339 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ManagersMode : MonoBehaviour
{
private static PollManager _pool;
public static PollManager Poll
{
get { return _pool; }
}
private void Awake()
{
_pool = this.gameObject.AddComponent<PollManager>();
}
}