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

18 lines
301 B
C#
Raw Normal View History

2024-08-23 15:49:34 +08:00
using UnityEngine;
using System.Collections;
public class ReqWelfareInfo : MonoBehaviour {
void OnEnable()
{
ReqWelfareState();
}
public void ReqWelfareState()
{
WelfareInfoReq req = new WelfareInfoReq();
req.flag = -1;
req.SendMsg();
}
}