1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-05 18:27:01 +00:00

sidearray constructors

This commit is contained in:
Zeno Rogue 2025-03-18 18:55:16 +01:00
parent 4c31ad612a
commit 91d0ca9f4f

View File

@ -49,6 +49,9 @@ constexpr SIDE allsides[] = {
constexpr int SIDEPARS = int(SIDE::GUARD);
template<class T> struct sidearray : array<T, SIDEPARS> {
sidearray() {};
// not needed in newer C++ standards, I do not know how to do this correctly in C++11
constexpr sidearray(T a, T b, T c, T d, T e, T f, T g, T h, T i, T j, T k, T l, T m) : array<T, SIDEPARS> ({a,b,c,d,e,f,g,h,i,j,k,l,m}) {};
T& operator [] (SIDE s) { return array<T, SIDEPARS>::operator[] ((int) s); };
const T& operator [] (SIDE s) const { return array<T, SIDEPARS>::operator[] ((int) s); };
};