Add missing sync interfaces.

This commit is contained in:
RoosterDragon
2015-07-29 00:54:01 +01:00
parent 593d913f55
commit 6b62aa1ad5
4 changed files with 4 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ namespace OpenRA.Mods.Common.Traits
public object Create(ActorInitializer init) { return new ExternalCapturable(init.Self, this); }
}
public class ExternalCapturable : ITick
public class ExternalCapturable : ITick, ISync
{
[Sync] public int CaptureProgressTime = 0;
[Sync] public Actor Captor;