Files
JJBB/Assets/Project/Script/GUI/Welfare/WelfareNodePageBase.cs
2024-08-23 15:49:34 +08:00

18 lines
268 B
C#

using UnityEngine;
using System.Collections;
public class WelfareNodePageBase : WelfarePageBaseCS{
public static WelfareNodePageBase Instance;
void Awake()
{
Instance = this;
}
void OnDestroy()
{
Instance = null;
}
}