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

18 lines
301 B
C#

using UnityEngine;
using System.Collections;
public class ReqWelfareInfo : MonoBehaviour {
void OnEnable()
{
ReqWelfareState();
}
public void ReqWelfareState()
{
WelfareInfoReq req = new WelfareInfoReq();
req.flag = -1;
req.SendMsg();
}
}