BugReportPopoverRoot.cs 260 B

123456789101112131415
  1. using System;
  2. using SRF;
  3. using UnityEngine;
  4. namespace SRDebugger.UI.Other
  5. {
  6. public class BugReportPopoverRoot : SRMonoBehaviourEx
  7. {
  8. [RequiredField]
  9. public CanvasGroup CanvasGroup;
  10. [RequiredField]
  11. public RectTransform Container;
  12. }
  13. }