15 lines
172 B
C++
15 lines
172 B
C++
#pragma once
|
|
#ifndef _NB_UTIL
|
|
#define _NB_UTIL
|
|
|
|
#include <array>
|
|
|
|
namespace nb{
|
|
|
|
template<unsigned int N, typename T>
|
|
struct Size {
|
|
std::array<T, N> vals;
|
|
};
|
|
|
|
};
|
|
#endif |