2026-06-25 14:51:58 +09:00
|
|
|
"use strict";
|
|
|
|
|
|
2026-06-29 16:21:58 +09:00
|
|
|
// Public facade for registries that are still consumed across modules.
|
2026-06-25 14:51:58 +09:00
|
|
|
(function (global) {
|
|
|
|
|
global.TarinaiItemRegistry = Object.freeze({
|
2026-06-28 23:07:40 +09:00
|
|
|
food: global.TarinaiFoodRegistry,
|
|
|
|
|
effect: global.TarinaiEffectRegistry,
|
2026-06-25 14:51:58 +09:00
|
|
|
});
|
|
|
|
|
})(typeof window !== "undefined" ? window : globalThis);
|