summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Containers/Vector.hpp
blob: 9fbd52a250248c0bfd97e6da4db7784e2b316970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __AE_VECTOR_HPP__
#define __AE_VECTOR_HPP__

#include <vector>

namespace AsuraEngine
{
    namespace Containers
    {
        template<typename T>
        using Vector = std::vector<T>;

    }
}

#endif