18 lines
301 B
C#
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();
|
|
}
|
|
}
|