| 123456789101112131415161718192021222324252627282930 |
- using System;
- namespace ET
- {
- public class Init
- {
- public void Start()
- {
- try
- {
- Entry.Start();
- }
- catch (Exception e)
- {
- Log.Error(e);
- }
- }
- public void Update()
- {
- TimeInfo.Instance.Update();
- FiberManager.Instance.Update();
- }
- public void LateUpdate()
- {
- FiberManager.Instance.LateUpdate();
- }
- }
- }
|