18 lines
268 B
C#
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;
|
|
}
|
|
|
|
}
|