16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 16:19:19 +02:00

ECS System WIP

This commit is contained in:
2026-04-07 23:40:03 +02:00
parent f6db9978d2
commit 8e9fd9225f
30 changed files with 1133 additions and 242 deletions

11
registry/NameLiteral.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#include <cstddef>
#include "FName.h"
#include "NameHash.h"
consteval FName operator"" _name(const char* str, std::size_t len)
{
return FName{ HashLiteral(str, len) };
}