RobotManager.cs 251 B

1234567891011121314151617181920212223
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class RobotManager : MonoBehaviour
  5. {
  6. #region Config
  7. #endregion
  8. public void Start()
  9. {
  10. }
  11. public void Update()
  12. {
  13. }
  14. }