From ccc68b0272116936936fb34e79e30b41217e7afc Mon Sep 17 00:00:00 2001 From: Mustafa Alperen Seki Date: Sun, 2 Jun 2019 15:04:06 +0300 Subject: [PATCH] Make Crate trait public. --- OpenRA.Mods.Common/Traits/Crates/Crate.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.Common/Traits/Crates/Crate.cs b/OpenRA.Mods.Common/Traits/Crates/Crate.cs index 0307e6a127..53c64efb61 100644 --- a/OpenRA.Mods.Common/Traits/Crates/Crate.cs +++ b/OpenRA.Mods.Common/Traits/Crates/Crate.cs @@ -17,7 +17,7 @@ using OpenRA.Traits; namespace OpenRA.Mods.Common.Traits { - class CrateInfo : ITraitInfo, IPositionableInfo, Requires + public class CrateInfo : ITraitInfo, IPositionableInfo, Requires { [Desc("Length of time (in seconds) until the crate gets removed automatically. " + "A value of zero disables auto-removal.")] @@ -72,7 +72,7 @@ namespace OpenRA.Mods.Common.Traits } } - class Crate : ITick, IPositionable, ICrushable, ISync, + public class Crate : ITick, IPositionable, ICrushable, ISync, INotifyParachute, INotifyAddedToWorld, INotifyRemovedFromWorld, INotifyCrushed { readonly Actor self;