예제 #1
0
        internal StackView(WorldView worldView, StackViews stackViews, Stack stack, InputHandler input)
        {
            Id         = stackViews.GetNextId();
            WorldView  = worldView;
            StackViews = stackViews;
            Stack      = stack;

            Input = input;

            StackViewState = new StackViewNormalState(this);
            StateMachine   = new StackViewStateMachine();
        }
예제 #2
0
 internal void SetNotCurrent()
 {
     StackViews.SetNotCurrent();
 }
예제 #3
0
 internal void SelectNext()
 {
     StackViews.SelectNext();
 }
예제 #4
0
 internal void SetAsCurrent(StackView stackView)
 {
     StackViews.SetCurrent(stackView);
 }