Exemple #1
0
        public static void PopState()
        {
            VividState ls = States.Pop();

            ls.StopState();
            ls.Running = false;
        }
Exemple #2
0
        public static void PushState(VividState state, bool start = true)
        {
            States.Push(state);
            state.InitState();
            // VividApp.Link.StateInited = false;

            StateChanged = true;
        }
Exemple #3
0
 public static void PushState(VividState state, bool start = true)
 {
     States.Push(state);
     VividApp.Link.StateInited = false;
 }