驱蚊app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 rivejä
229 B

  1. using UnityEngine;
  2. using System.Collections;
  3. public class ReporterGUI : MonoBehaviour
  4. {
  5. Reporter reporter;
  6. void Awake()
  7. {
  8. reporter = gameObject.GetComponent<Reporter>();
  9. }
  10. void OnGUI()
  11. {
  12. reporter.OnGUIDraw();
  13. }
  14. }