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 OpenRA.FileFormats;
using System.IO;
namespace FileExtractor namespace FileExtractor
{ {

View File

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