Assets.Scripts.Console.ConsoleViewPC.ConsoleViewPC C# (CSharp) 메소드

ConsoleViewPC() 공개 메소드

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

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

            CommandLogger.Load();
        }