radoc tidy

This commit is contained in:
Scott_NZ
2013-03-22 18:12:47 +13:00
parent 942cbb2fe2
commit a25aa23805
9 changed files with 66 additions and 63 deletions

View File

@@ -355,7 +355,7 @@ namespace OpenRA.FileFormats
// mirrors DescriptionAttribute from System.ComponentModel but we dont want to have to use that everywhere.
public class DescAttribute : Attribute
{
public readonly string Description;
public DescAttribute(string description) { Description = description; }
public readonly string[] Lines;
public DescAttribute(params string[] lines) { Lines = lines; }
}
}