AuROXTL/Include/auROXTL/auArrayList.hpp
Reece Wilson 165bb0c6e5 [*] Amend date typo
(this was going to be a real commit, but i just ended up wasting hours on a dead-end idea)
2023-01-18 16:29:35 +00:00

15 lines
338 B
C++

/***
Copyright (C) 2023 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: auArrayList.hpp
Date: 2023-1-18
Author: Reece
***/
#pragma once
#if !defined(AURORA_RUNTIME_AU_ARRAY_LIST)
#define AURORA_RUNTIME_AU_ARRAY_LIST std::list
#endif
template <class T>
using AuArrayList = AURORA_RUNTIME_AU_ARRAY_LIST<T>;