14 lines
216 B
C++
14 lines
216 B
C++
|
/***
|
||
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: IO.cpp
|
||
|
Date: 2022-4-14
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#pragma once
|
||
|
|
||
|
namespace Aurora::IO
|
||
|
{
|
||
|
void Init();
|
||
|
void Deinit();
|
||
|
}
|