squash some spurious warnings

This commit is contained in:
Chris Forbes
2010-08-23 18:23:55 +12:00
parent b1b8b2c14a
commit aeccf53e97
2 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
using System;
using System;
using System.IO;
using OpenRA.FileFormats;
using System.IO;
namespace FileExtractor
{

View File

@@ -90,10 +90,10 @@ namespace OpenRA
class Format2ActorReference
{
public string Id;
public string Type;
public int2 Location;
public string Owner;
public string Id = null;
public string Type = null;
public int2 Location = int2.Zero;
public string Owner = null;
}
public Map(IFolder package)