AmandaInterface.Amanda.Amanda C# (CSharp) Method

Amanda() private method

private Amanda ( string autorun = null ) : System
autorun string
return System
        private Amanda(string autorun = null)
        {
            if (Instance == null)
            {
                Instance = this;
            }

            AmandaHook.InitOptions(true, ""); //empty char will result in amanda loading up amanda.ini
            AmandaHook.CreateInterpreter();
            if (autorun != null) AmandaHook.Load(autorun);
        }