36 lines
839 B
C#
36 lines
839 B
C#
//------------------------------------------------------------
|
|
// Game Framework
|
|
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
|
|
// Homepage: https://gameframework.cn/
|
|
// Feedback: mailto:ellan@gameframework.cn
|
|
//------------------------------------------------------------
|
|
|
|
using UnityEngine;
|
|
|
|
namespace UnityGameFramework.Runtime
|
|
{
|
|
/// <summary>
|
|
/// 界面字符型主键。
|
|
/// </summary>
|
|
public sealed class UIStringKey : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
private string m_Key = null;
|
|
|
|
/// <summary>
|
|
/// 获取或设置主键。
|
|
/// </summary>
|
|
public string Key
|
|
{
|
|
get
|
|
{
|
|
return m_Key ?? string.Empty;
|
|
}
|
|
set
|
|
{
|
|
m_Key = value;
|
|
}
|
|
}
|
|
}
|
|
}
|