Created
October 16, 2014 13:07
-
-
Save cubed2d/df1f017dc0ff378b4bba to your computer and use it in GitHub Desktop.
fix for error CS0103: aka Degub
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class Degub | |
{ | |
public static void Log(object message) | |
{ | |
Debug.Log(message); | |
} | |
public static void Log(object message, Object context) | |
{ | |
Debug.Log(message, context); | |
} | |
public static void LogError(object message) | |
{ | |
Debug.LogError(message); | |
} | |
public static void LogError(object message, Object context) | |
{ | |
Debug.LogError(message, context); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment