IndieGame/client/Assets/Plugins/Easy Save 3/Scripts/ES3InspectorInfo.cs
DOBEST\zhaoyingjie f242607587 初始化工程
2024-10-11 10:12:15 +08:00

19 lines
349 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/*
* Displays an info message in the inspector.
* Only available in the Editor.
*/
public class ES3InspectorInfo : MonoBehaviour
{
#if UNITY_EDITOR
public string message = "";
public void SetMessage(string message)
{
this.message = message;
}
#endif
}