Skip to content

Commit d728f4f

Browse files
committed
Change namespace to Debug
1 parent 73eceed commit d728f4f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Debug Tools package contains assets and scripts for debugging Unity projects
55
Import the package namespace in each class/script you want to use it. You may need to regenerate project files/assemblies first.
66

77
```csharp
8-
using Zigurous.DebugTools;
8+
using Zigurous.Debug;
99
```
1010

1111
## Installation

Runtime/ComparePerformance.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using UnityEngine;
33

4-
namespace Zigurous.DebugTools
4+
namespace Zigurous.Debug
55
{
66
/// <summary>
77
/// Measures the execution time of two functions with a given amount of

Runtime/CompareResults.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using UnityEngine;
33

4-
namespace Zigurous.DebugTools
4+
namespace Zigurous.Debug
55
{
66
/// <summary>
77
/// Executes two functions a given amount of times and compares how many

Runtime/FPSDisplay.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using UnityEngine;
22
using UnityEngine.UI;
33

4-
namespace Zigurous.DebugTools
4+
namespace Zigurous.Debug
55
{
66
/// <summary>
77
/// Displays the framerate of the application in realtime.

Runtime/Log.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Text;
22

3-
namespace Zigurous.DebugTools
3+
namespace Zigurous.Debug
44
{
55
/// <summary>
66
/// Provides more robust console logging functions compared to

0 commit comments

Comments
 (0)