view Log.h @ 1214:0d6c7ff3cddd

simplified stru193_math constructor and class definition GAME_STATE_3 to GAME_STATE_LOADING_GAME
author Grumpy7
date Sun, 09 Jun 2013 16:06:12 +0200
parents 9c0607679772
children
line wrap: on
line source

#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, ...);
};