blob: 5824b57499337d801de65d75a0c8aa03bf51183a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __ASURA_ENGINE_VECTOR_HPP__
#define __ASURA_ENGINE_VECTOR_HPP__
#include <vector>
namespace AsuraEngine
{
namespace Containers
{
template<typename T>
using Vector = std::vector<T>;
}
}
#endif
|