Only sync projectiles and future synced effects.

This commit is contained in:
Matthias Mailänder
2016-06-04 19:35:26 +02:00
parent 9def6b0f70
commit 71743b3b4a
11 changed files with 56 additions and 41 deletions

View File

@@ -32,10 +32,10 @@ namespace OpenRA.Mods.RA.Projectiles
public readonly int Duration = 2;
public IEffect Create(ProjectileArgs args) { return new TeslaZap(this, args); }
public IProjectile Create(ProjectileArgs args) { return new TeslaZap(this, args); }
}
public class TeslaZap : IEffect
public class TeslaZap : IProjectile
{
readonly ProjectileArgs args;
readonly TeslaZapInfo info;