From e81a1f78a47eaeb8c11cbebf815fbe749f1f253f Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 27 Nov 2010 22:38:56 +1300 Subject: [PATCH] Fix visibility that mono 2.8 happily ignores. --- OpenRA.Game/Support/PerfHistory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Game/Support/PerfHistory.cs b/OpenRA.Game/Support/PerfHistory.cs index ab9fd16a44..ccd6b6363f 100644 --- a/OpenRA.Game/Support/PerfHistory.cs +++ b/OpenRA.Game/Support/PerfHistory.cs @@ -15,7 +15,7 @@ using OpenRA.FileFormats; namespace OpenRA.Support { - static class PerfHistory + public static class PerfHistory { static readonly Color[] colors = { Color.Red, Color.Green, Color.Blue, Color.Yellow, @@ -45,7 +45,7 @@ namespace OpenRA.Support } } - class PerfItem + public class PerfItem { public readonly Color c; public readonly string Name;