/
EvilBeaver
/
OneScript
Обзор
Документация
Войти
/
EvilBeaver
/
OneScript
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
v2.0-alpha-1
src/ScriptEngine/Hosting/IEngineBuilder.cs
26 строк
894 B
Andrey Ovsiankin
Переименовал некоторые классы
22 дек 2020, 22:37
22 дек 2020, 22:37
e4be2be
Код
Авторство
О чём код?
/*---------------------------------------------------------- This Source Code Form is subject to the terms of the Mozilla Public License, v.2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. ----------------------------------------------------------*/ using ScriptEngine.Compiler; using ScriptEngine.Machine; namespace ScriptEngine.Hosting { public interface IEngineBuilder { RuntimeEnvironment Environment { get; set; } ITypeManager TypeManager { get; set; } IGlobalsManager GlobalInstances { get; set; } ICompilerServiceFactory CompilerFactory { get; set; } CompilerOptions CompilerOptions { get; set; } IDebugController DebugController { get; set; } ConfigurationProviders ConfigurationProviders { get; } ScriptingEngine Build(); } }