驱蚊app
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

17 行
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. }