17 lines
340 B
C#
17 lines
340 B
C#
using System.Collections.Generic;
|
|
using TLang.Common;
|
|
|
|
namespace TLang.VM
|
|
{
|
|
public interface IDependencyPool : IEnumerable<(TLangDependency Dependency,TVMFile File)>
|
|
{
|
|
|
|
|
|
bool DependencyExists(TLangDependency dependency);
|
|
|
|
bool AddDependency(TLangDependency dependency,RootEnvironment env);
|
|
|
|
|
|
|
|
}
|
|
} |