18 lines
412 B
C#
18 lines
412 B
C#
|
|
using System.Collections;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using UnityEngine;
|
|||
|
|
|
|||
|
|
public class AliSettings : MonoBehaviour
|
|||
|
|
{
|
|||
|
|
#region <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
/// <summary>
|
|||
|
|
/// API Key
|
|||
|
|
/// </summary>
|
|||
|
|
[Header("<22><>дӦ<D0B4>õ<EFBFBD>API Key")] public string m_API_key = string.Empty;
|
|||
|
|
/// <summary>
|
|||
|
|
/// APP ID
|
|||
|
|
/// </summary>
|
|||
|
|
[Header("<22><>дӦ<D0B4>õ<EFBFBD>API ID")] public string m_APP_ID = string.Empty;
|
|||
|
|
#endregion
|
|||
|
|
}
|