初始化
This commit is contained in:
16
UnityGame/Assets/Scripts/ThirdParty/Unity-Logs-Viewer/Reporter/ReporterGUI.cs
vendored
Normal file
16
UnityGame/Assets/Scripts/ThirdParty/Unity-Logs-Viewer/Reporter/ReporterGUI.cs
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
using UnityEngine;
|
||||
using System.Collections;
|
||||
|
||||
public class ReporterGUI : MonoBehaviour
|
||||
{
|
||||
Reporter reporter;
|
||||
void Awake()
|
||||
{
|
||||
reporter = gameObject.GetComponent<Reporter>();
|
||||
}
|
||||
|
||||
void OnGUI()
|
||||
{
|
||||
reporter.OnGUIDraw();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user