remove need for #pragma in Bridge.cs
This commit is contained in:
@@ -21,16 +21,16 @@ namespace OpenRA.Mods.RA
|
|||||||
{
|
{
|
||||||
public readonly bool Long = false;
|
public readonly bool Long = false;
|
||||||
|
|
||||||
#pragma warning disable 0649
|
|
||||||
public readonly ushort Template;
|
public readonly ushort Template = 0;
|
||||||
public readonly ushort DamagedTemplate;
|
public readonly ushort DamagedTemplate = 0;
|
||||||
public readonly ushort DestroyedTemplate;
|
public readonly ushort DestroyedTemplate = 0;
|
||||||
|
|
||||||
// For long bridges
|
// For long bridges
|
||||||
public readonly ushort DestroyedPlusNorthTemplate;
|
public readonly ushort DestroyedPlusNorthTemplate = 0;
|
||||||
public readonly ushort DestroyedPlusSouthTemplate;
|
public readonly ushort DestroyedPlusSouthTemplate = 0;
|
||||||
public readonly ushort DestroyedPlusBothTemplate;
|
public readonly ushort DestroyedPlusBothTemplate = 0;
|
||||||
#pragma warning restore 0649
|
|
||||||
public readonly string[] ShorePieces = {"br1", "br2"};
|
public readonly string[] ShorePieces = {"br1", "br2"};
|
||||||
public readonly int[] NorthOffset = null;
|
public readonly int[] NorthOffset = null;
|
||||||
public readonly int[] SouthOffset = null;
|
public readonly int[] SouthOffset = null;
|
||||||
|
|||||||
Reference in New Issue
Block a user