Files
taptap2024_GJ_chidouren/Assets/3rd/Unity-Logs-Viewer-master/Reporter/ReporterGUI.cs
2024-10-16 00:03:41 +08:00

17 lines
244 B
C#

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