aboutsummaryrefslogtreecommitdiff
path: root/source/utils/Debug.hx
diff options
context:
space:
mode:
Diffstat (limited to 'source/utils/Debug.hx')
-rw-r--r--source/utils/Debug.hx11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/utils/Debug.hx b/source/utils/Debug.hx
new file mode 100644
index 0000000..6c0b831
--- /dev/null
+++ b/source/utils/Debug.hx
@@ -0,0 +1,11 @@
+package utils;
+
+import lime.utils.Log;
+
+class Debug
+{
+ public static function log(message:Any)
+ {
+ Log.println(message);
+ }
+}