12 lines
378 B
C#
12 lines
378 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Prise
|
|
{
|
|
public interface IRuntimePlatformContext
|
|
{
|
|
IEnumerable<string> GetPlatformExtensions();
|
|
IEnumerable<string> GetPluginDependencyNames(string nameWithoutFileExtension);
|
|
IEnumerable<string> GetPlatformDependencyNames(string nameWithoutFileExtension);
|
|
RuntimeInfo GetRuntimeInfo();
|
|
}
|
|
} |