StyleCop clean Map/*.cs files

This commit is contained in:
Matthias Mailänder
2013-08-25 14:30:00 +02:00
parent ae00cb3adf
commit ba13c1d982
16 changed files with 68 additions and 72 deletions

View File

@@ -12,15 +12,15 @@ namespace OpenRA.FileFormats
{
public struct TileReference<T, U>
{
public T type;
public U index;
public T Type;
public U Index;
public TileReference(T t, U i)
{
type = t;
index = i;
Type = t;
Index = i;
}
public override int GetHashCode() { return type.GetHashCode() ^ index.GetHashCode(); }
public override int GetHashCode() { return Type.GetHashCode() ^ Index.GetHashCode(); }
}
}