Make sure braces for multi-line statements are on their own lines.
This commit is contained in:
@@ -99,8 +99,13 @@ namespace OpenRA.Mods.Common.Projectiles
|
||||
bool isTailTravelling;
|
||||
bool continueTracking = true;
|
||||
|
||||
bool IsBeamComplete { get { return !isHeadTravelling && headTicks >= length &&
|
||||
!isTailTravelling && tailTicks >= length; } }
|
||||
bool IsBeamComplete
|
||||
{
|
||||
get
|
||||
{
|
||||
return !isHeadTravelling && headTicks >= length && !isTailTravelling && tailTicks >= length;
|
||||
}
|
||||
}
|
||||
|
||||
public AreaBeam(AreaBeamInfo info, ProjectileArgs args, Color color)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user