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

17 lines
445 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace SDK{
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;
}
}