Added target globalization notes

This commit is contained in:
York Jasper Niebuhr 2026-04-03 23:59:53 +02:00
parent 98fcad5a94
commit 1422c0b143

View File

@ -11,6 +11,9 @@ static std::size_t next_global_target_uid = 0;
std::unordered_map<std::size_t, TARGET> targets; std::unordered_map<std::size_t, TARGET> targets;
std::unordered_map<std::string, CU> units; std::unordered_map<std::string, CU> units;
// NOTE -> Field comparison for this matter can literally just compare field attributes
// Two different types with exactly same field structure will not cause problems if simply randomized together
static bool global_target_field_cmp(const TARGET& a, const TARGET& b) { static bool global_target_field_cmp(const TARGET& a, const TARGET& b) {
// TODO // TODO
return true; return true;