Cleanup
Some checks failed
Run ReCI Build Test / Explore-Gitea-Actions (push) Failing after 1m46s

This commit is contained in:
2024-07-19 01:34:43 -04:00
parent eca4309e85
commit 0b7af6fd31
2 changed files with 14 additions and 18 deletions

View File

@@ -1,10 +1,14 @@
#pragma once
#include <J3ML/J3ML.h>
namespace JGL {
enum class Inversion : u8 {
enum Inversion {
None = 0,
Vertical = 1,
Horizontal = 2,
Both = 3
};
inline Inversion operator|(Inversion a, Inversion b) {
return static_cast<Inversion>(static_cast<int>(a) | static_cast<int>(b));
}
}