/*** 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 using AuArrayList = AURORA_RUNTIME_AU_ARRAY_LIST;