13 lines
213 B
C++
13 lines
213 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();
|
||
|
}
|