Add more make functions

This commit is contained in:
Jaby
2023-10-03 16:04:37 +02:00
committed by Jaby
parent 2bcdb279d9
commit 724e9fb81e
4 changed files with 100 additions and 18 deletions

View File

@@ -8,6 +8,10 @@ namespace JabyEngine {
struct PagePositionClut {
PagePosition page;
PageClut clut;
static constexpr PagePositionClut create(PagePosition page, PageClut clut) {
return PagePositionClut{page, clut};
}
};
namespace internal {