Assets.Scripts.Console.ConsoleViewPC.ConsoleViewPC C# (CSharp) Method

ConsoleViewPC() public method

public ConsoleViewPC ( ConsoleWindow InParent ) : System
InParent ConsoleWindow
return System
        public ConsoleViewPC(ConsoleWindow InParent)
        {
            ParentWindow = InParent;
            parser = new CommandParser();

            CandinateContext.RegisterStateByAttributes<CandinateStateAttribute>(typeof(CandinateStateAttribute).Assembly, this);
            CandinateContext.ChangeState("CommandCandinateState");

            CommandLogger.Load();
        }