Files
tianrunCRM/Assets/CoolapeFrame/3rd/Unity-Logs-Viewer/Reporter/ReporterGUI.cs
2020-07-04 14:41:25 +08:00

17 lines
245 B
C#

using UnityEngine;
using System.Collections;
public class ReporterGUI : MonoBehaviour
{
Reporter reporter;
void Awake()
{
reporter = gameObject.GetComponent<Reporter>();
}
void OnGUI()
{
reporter.OnGUIDraw();
}
}