2023-01-18 10:49:32 +00:00
|
|
|
/***
|
2023-01-18 16:29:35 +00:00
|
|
|
Copyright (C) 2023 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
2023-01-18 10:49:32 +00:00
|
|
|
|
|
|
|
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>;
|