14 lines
272 B
C++
14 lines
272 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: ETTYAlign.hpp
|
|
Date: 2022-5-11
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Console::ConsoleTTY
|
|
{
|
|
AUE_DEFINE(ETTYAlign,
|
|
(eLeft, eCenter, eRight));
|
|
} |