-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebugDefines.cs
More file actions
26 lines (25 loc) · 838 Bytes
/
DebugDefines.cs
File metadata and controls
26 lines (25 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//-----------------------------------------------------------------------------
// Contains some simple debugging options.
//
// __Defense Sample for Game Programming Algorithms and Techniques
// Copyright (C) Sanjay Madhav. All rights reserved.
//
// Released under the Microsoft Permissive License.
// See LICENSE.txt for full details.
//-----------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace itp380
{
public static class DebugDefines
{
public static bool bDrawButtonBounds = false;
public static bool bShowFPS = true;
public static bool bShowBuildString = true;
public static bool bShowWindowsMouseCursor = true;
public static bool bShowGlobalPath = true;
public static string DebugName = "";
}
}