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