enable Debug by default

GitOrigin-RevId: ba7ff1d9b775484baa023bfb6bb6cbe5bc64d7f8
This commit is contained in:
Colin McMillen 2020-01-29 13:56:08 -05:00
parent 878d434b22
commit bff5d2b490

View File

@ -25,8 +25,8 @@ namespace SemiColinGames {
Color = color;
}
}
public static bool Enabled;
public static bool Enabled = true;
// This is a LinkedList instead of a List because SetFpsText() adds to its front.
static readonly LinkedList<string> toasts = new LinkedList<string>();
static readonly List<DebugRect> rects = new List<DebugRect>();