miduo_client/Assets/LuaFramework/Scripts/SDK/MessageDef.cs

17 lines
445 B
C#
Raw Normal View History

2020-05-09 13:31:21 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2020-07-15 13:44:37 +08:00
namespace SDK{
2020-05-09 13:31:21 +08:00
public static class MessageDef
{
public const int MSG_InitCallback = 1;
public const int MSG_LoginCallback = 2;
public const int MSG_PayCallback = 3;
public const int MSG_SwitchAccountCallback = 4;
public const int MSG_LogoutCallback = 5;
public const int MSG_RegisterCallback = 6;
2020-05-09 13:31:21 +08:00
}
}