blob: 50ee7fb0bd668d629926fd00dc0af4085fb47f98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using UnityEngine;
namespace Mountools.Tools
{
#if MT_L_CHINESE
[AddComponentMenu("Mountools/工具/书签")]
#endif
#if MT_L_ENGLISH
[AddComponentMenu("Mountools/Tools/Bookmark")]
#endif
[Icon("Assets/Mountools/_RESOURCES/ICONS/TOOLS/BOOKMARK.png")]
public class ToolInspectorBookmark : MonoBehaviour
{
[HideInInspector]
#if MT_L_CHINESE
public string bookmarkContent = "写点啥 :)";
#endif
#if MT_L_ENGLISH
public string bookmarkContent = "Write something :)";
#endif
}
}
|