Files
JJBB/Assets/Project/Script/GUI/Welfare/WelfareNodePageBase.cs

18 lines
268 B
C#
Raw Permalink Normal View History

2024-08-23 15:49:34 +08:00
using UnityEngine;
using System.Collections;
public class WelfareNodePageBase : WelfarePageBaseCS{
public static WelfareNodePageBase Instance;
void Awake()
{
Instance = this;
}
void OnDestroy()
{
Instance = null;
}
}