From e5457a3390acb4b9a0f8aa8eec061d77398eb41e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 11 Apr 2020 15:04:26 +0200 Subject: [PATCH] Allow wall renderers in mod code. --- OpenRA.Mods.Common/TraitsInterfaces.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/TraitsInterfaces.cs b/OpenRA.Mods.Common/TraitsInterfaces.cs index d5f350a7ce..1cfc3f27fb 100644 --- a/OpenRA.Mods.Common/TraitsInterfaces.cs +++ b/OpenRA.Mods.Common/TraitsInterfaces.cs @@ -314,7 +314,7 @@ namespace OpenRA.Mods.Common.Traits } [RequireExplicitImplementation] - interface IWallConnector + public interface IWallConnector { bool AdjacentWallCanConnect(Actor self, CPos wallLocation, string wallType, out CVec facing); void SetDirty();