Promote map generators to stand-alone editor tools.

This commit is contained in:
Paul Chote
2025-04-14 13:48:05 +01:00
committed by Gustas Kažukauskas
parent 78f660124c
commit b2acc653a0
15 changed files with 498 additions and 545 deletions

View File

@@ -961,6 +961,12 @@ namespace OpenRA.Mods.Common.Traits
bool PathMightExistForLocomotorBlockedByImmovable(Locomotor locomotor, CPos source, CPos target);
}
public interface IEditorToolInfo : ITraitInfoInterface
{
string Label { get; }
string PanelWidget { get; }
}
public class MapGenerationException : Exception
{
public MapGenerationException(string message)