You've already forked taptap2024_GJ_chidouren
17 lines
244 B
C#
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();
|
|
}
|
|
}
|