1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System.Collections.Generic;
- using UnityEngine;
- using WS;
- [ObjectSystem]
- public class DataManagerAwakeSystem : AwakeSystem<DataManager>
- {
- public override void Awake(DataManager self)
- {
- self.Awake();
- }
- }
- public class DataManager : WSComponent
- {
-
- public UserData User;
-
- public PatternType Pattern;
-
- public bool IsGuide { get; set; }
-
- public Vector3 pos;
-
- public Quaternion rot;
-
- public List<CourseData> Courses;
- public string httpBase = "http://dgs.admin.intatc.com/";
- public void Awake()
- {
- Courses = ConfigHelper.LoadConfig<List<CourseData>>($"Config/Framework/Course");
- }
- }
- public class LoadScenePoint
- {
- }
- public class CourseData
- {
- public string Name;
- }
|