15 lines
328 B
C++
15 lines
328 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: auArray.hpp
|
|
Date: 2022-2-1
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#if !defined(AURORA_RUNTIME_AU_ARRAY)
|
|
#define AURORA_RUNTIME_AU_ARRAY std::array
|
|
#endif
|
|
|
|
template <class T, size_t Z>
|
|
using AuArray = AURORA_RUNTIME_AU_ARRAY<T, Z>; |