18 lines
264 B
C#
18 lines
264 B
C#
|
|
using System;
|
|||
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
namespace Gameplay.Performance.Cmp
|
|||
|
|
{
|
|||
|
|
public class CmpUIMainScene : MonoBehaviour
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public static CmpUIMainScene instance;
|
|||
|
|
|
|||
|
|
private void Awake()
|
|||
|
|
{
|
|||
|
|
instance = this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|