Reece
fbd437d3d4
[*] LocaleStrings should always return constant references [*] Readded line splitting logic to the new Logger class
20 lines
400 B
C++
20 lines
400 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Hooks.hpp
|
|
Date: 2021-6-12
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Console::Hooks
|
|
{
|
|
inline AuSPtr<Hooks::ITextLineSubscriber> gExternalLineProcessor;
|
|
|
|
// hack:
|
|
void WriteLoggerFailedWarning();
|
|
|
|
void Deinit();
|
|
void Init();
|
|
void WriteLine(const ConsoleMessage &msg);
|
|
} |