using System.Collections.Generic;
namespace CADRuntime
{
public interface IRpsConfig
{
///
/// Returns a list of string variables that the Runtime will add to
/// the scripts scope under "__vars__".
///
/// In CADPythonShell, these are read from the CADPythonShell.xml file.
///
IDictionary GetVariables();
///
/// Returns a list of paths to add to the python engine search paths.
///
/// In CADPythonShell, these are read from the CADPythonShell.xml file.
///
IEnumerable GetSearchPaths();
}
}