Make LaserZap classes public

This commit is contained in:
reaperrr
2016-05-31 14:30:52 +02:00
parent af8e81a99d
commit 2e94a23d9e

View File

@@ -21,7 +21,7 @@ using OpenRA.Traits;
namespace OpenRA.Mods.Common.Projectiles namespace OpenRA.Mods.Common.Projectiles
{ {
[Desc("Not a sprite, but an engine effect.")] [Desc("Not a sprite, but an engine effect.")]
class LaserZapInfo : IProjectileInfo public class LaserZapInfo : IProjectileInfo
{ {
[Desc("The width of the zap.")] [Desc("The width of the zap.")]
public readonly WDist Width = new WDist(86); public readonly WDist Width = new WDist(86);
@@ -54,7 +54,7 @@ namespace OpenRA.Mods.Common.Projectiles
} }
} }
class LaserZap : IEffect public class LaserZap : IEffect
{ {
readonly ProjectileArgs args; readonly ProjectileArgs args;
readonly LaserZapInfo info; readonly LaserZapInfo info;