added ToString() for OpenRA.Player
This commit is contained in:
@@ -59,7 +59,6 @@ namespace OpenRA.Network
|
|||||||
il.Emit(OpCodes.Castclass, t);
|
il.Emit(OpCodes.Castclass, t);
|
||||||
il.Emit(OpCodes.Stloc, this_);
|
il.Emit(OpCodes.Stloc, this_);
|
||||||
|
|
||||||
|
|
||||||
var dictAdd_ = dictType.GetMethod("Add", BindingFlags.Instance | BindingFlags.Public, null, new Type[] { typeof(string), typeof(string) }, null);
|
var dictAdd_ = dictType.GetMethod("Add", BindingFlags.Instance | BindingFlags.Public, null, new Type[] { typeof(string), typeof(string) }, null);
|
||||||
var dictCtor_ = dictType.GetConstructor(Type.EmptyTypes);
|
var dictCtor_ = dictType.GetConstructor(Type.EmptyTypes);
|
||||||
var objToString_ = typeof(object).GetMethod("ToString", BindingFlags.Instance | BindingFlags.Public, null, Type.EmptyTypes, null);
|
var objToString_ = typeof(object).GetMethod("ToString", BindingFlags.Instance | BindingFlags.Public, null, Type.EmptyTypes, null);
|
||||||
|
|||||||
@@ -91,6 +91,11 @@ namespace OpenRA
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return "{0} ({1})".F(PlayerName, ClientIndex);
|
||||||
|
}
|
||||||
|
|
||||||
public Dictionary<Player, Stance> Stances = new Dictionary<Player, Stance>();
|
public Dictionary<Player, Stance> Stances = new Dictionary<Player, Stance>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user