17 lines
339 B
C#
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>();
|
|
}
|
|
}
|