Beispiel #1
0
        internal Control(PluginControl pc)
            : base(pc)
        {
            AUDIOFILE = Path.Combine(control.instance.UserDir, "ChatTemp");

            // Substitutions from chat-ese to English.
            subs = new Substitutions(control);
            syn  = new Synthesizer(control);
            if (syn == null)
            {
                return;
            }

            voices = new Voices(control);
        }
Beispiel #2
0
        internal Control(PluginControl pc)
            : base(pc)
        {
            AUDIOFILE = Path.Combine(control.instance.UserDir, "ChatTemp");

            // Substitutions from chat-ese to English.
            subs = new Substitutions( control );
            syn = new Synthesizer(control);
            if (syn == null)
                return;

            voices = new Voices(control);
        }