public static AutomationInterpretor Get()
 {
     if (s_instance == null)
     {
         s_instance = new AutomationInterpretor();
     }
     return(s_instance);
 }
Beispiel #2
0
 private void Update()
 {
     this.ProcessScheduledCallbacks();
     Network.Heartbeat();
     AutomationInterpretor.Get().Update();
 }
Beispiel #3
0
 private void Start()
 {
     AutomationInterpretor.Get().Start();
 }