This commit is contained in:
richgel99@gmail.com
2011-12-27 21:18:07 +00:00
commit 9f98ea7e22
192 changed files with 77747 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
// File: crn_win32_console.h
// See Copyright Notice and license at the end of inc/crnlib.h
#pragma once
#include "crn_console.h"
#include "crn_event.h"
namespace crnlib
{
class win32_console
{
public:
static void init();
static void deinit();
static void tick();
private:
static bool console_output_func(eConsoleMessageType type, const wchar_t* pMsg, void* pData);
};
} // namespace crnlib