1234567891011121314151617181920212223242526 |
- namespace ChivaXR.Op
- {
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using UnityEngine.UI;
- using UnityEngine.EventSystems;
-
- /// <summary>
- /// 操作点逻辑处理
- /// </summary>
- public class OperationLogicBase : MonoBehaviour
- {
- // Start is called before the first frame update
- void Start()
- {
- }
- // Update is called once per frame
- void Update()
- {
- }
- }
- }
|