17 lines
229 B
C#
17 lines
229 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class ReporterGUI : MonoBehaviour
|
|
{
|
|
Reporter reporter;
|
|
void Awake()
|
|
{
|
|
reporter = gameObject.GetComponent<Reporter>();
|
|
}
|
|
|
|
void OnGUI()
|
|
{
|
|
reporter.OnGUIDraw();
|
|
}
|
|
}
|