using UnityEngine;
using System.Collections;

public class WelfareNodePageBase : WelfarePageBaseCS{

    public static WelfareNodePageBase Instance;
    void Awake()
    {
        Instance = this;
    }

    void OnDestroy()
    {
        Instance = null;
    }

}