mirror of
https://github.com/NoelFB/blah.git
synced 2025-04-08 00:56:04 +08:00
8 lines
104 B
C++
8 lines
104 B
C++
#pragma once
|
|
#include <vector>
|
|
|
|
namespace Blah
|
|
{
|
|
template<typename T>
|
|
using Vector = std::vector<T>;
|
|
} |