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