15 lines
263 B
C++
15 lines
263 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Flusher.hpp
|
|
Date: 2021-8-27
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Console
|
|
{
|
|
void ForceFlush();
|
|
void InitFlusher();
|
|
void DeinitFlusher();
|
|
} |