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;
|
2020-07-23 20:04:25 +08:00
|
|
|
|
public const int MSG_RegisterCallback = 6;
|
2020-05-09 13:31:21 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|