diff Engine/Log.h @ 2499:68cdef6879a0

engine folder
author Ritor1
date Fri, 19 Sep 2014 02:57:42 +0600
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Engine/Log.h	Fri Sep 19 02:57:42 2014 +0600
@@ -0,0 +1,11 @@
+#pragma once
+
+
+#define LOG_DECOMPILATION_WARNING()  Log::Warning(L"%S [%S:%u]", __FUNCTION__, __FILE__, __LINE__);
+
+class Log
+{
+  public:
+    static void Initialize();
+    static void Warning(const wchar_t *pFormat, ...);
+};
\ No newline at end of file