16 lines
258 B
C++
16 lines
258 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Console.hpp
|
|
Date: 2021-6-8
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Console
|
|
{
|
|
void Init();
|
|
void Init2();
|
|
void Pump();
|
|
void Exit();
|
|
} |