Add plumbing for mod-defined terrain loaders.

This commit is contained in:
Paul Chote
2020-10-16 16:36:55 +01:00
committed by reaperrr
parent b86b638700
commit 207e09fea9
10 changed files with 64 additions and 1 deletions

View File

@@ -19,6 +19,11 @@ using OpenRA.Traits;
namespace OpenRA
{
public interface ITerrainLoader
{
ITerrainInfo ParseTerrain(IReadOnlyFileSystem fileSystem, string path);
}
public interface ITerrainInfo
{
string Id { get; }