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