├── .gitignore ├── Images └── Banner.png ├── LICENSE ├── README.md ├── bin ├── InternalDebug.dll └── InternalDebug_NoNamespace.dll └── src ├── InternalDebug.cs └── InternalDebug_NoNamespace.cs /.gitignore: -------------------------------------------------------------------------------- 1 | \Class Library/ 2 | \.vs/ 3 | -------------------------------------------------------------------------------- /Images/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoebRogers/UnityDebug/HEAD/Images/Banner.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoebRogers/UnityDebug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoebRogers/UnityDebug/HEAD/README.md -------------------------------------------------------------------------------- /bin/InternalDebug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoebRogers/UnityDebug/HEAD/bin/InternalDebug.dll -------------------------------------------------------------------------------- /bin/InternalDebug_NoNamespace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoebRogers/UnityDebug/HEAD/bin/InternalDebug_NoNamespace.dll -------------------------------------------------------------------------------- /src/InternalDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoebRogers/UnityDebug/HEAD/src/InternalDebug.cs -------------------------------------------------------------------------------- /src/InternalDebug_NoNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoebRogers/UnityDebug/HEAD/src/InternalDebug_NoNamespace.cs --------------------------------------------------------------------------------