OperationLogicBase.cs 510 B

1234567891011121314151617181920212223242526
  1. namespace ChivaXR.Op
  2. {
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using UnityEngine;
  6. using UnityEngine.UI;
  7. using UnityEngine.EventSystems;
  8. /// <summary>
  9. /// 操作点逻辑处理
  10. /// </summary>
  11. public class OperationLogicBase : MonoBehaviour
  12. {
  13. // Start is called before the first frame update
  14. void Start()
  15. {
  16. }
  17. // Update is called once per frame
  18. void Update()
  19. {
  20. }
  21. }
  22. }