sync carpet bombing

This commit is contained in:
Matthias Mailänder
2013-03-21 18:13:18 +01:00
parent 6cedc424ed
commit 43bb75c135

View File

@@ -21,10 +21,10 @@ namespace OpenRA.Mods.RA
public readonly int Range = 3;
}
class CarpetBomb : ITick // todo: maybe integrate this better with the normal weapons system?
class CarpetBomb : ITick, ISync // todo: maybe integrate this better with the normal weapons system?
{
CPos Target;
int dropDelay;
[Sync] CPos Target;
[Sync] int dropDelay;
public void SetTarget(CPos targetCell) { Target = targetCell; }