9 lines
298 B
JavaScript
9 lines
298 B
JavaScript
"use strict";
|
|
|
|
// Public facade for registries that are still consumed across modules.
|
|
(function (global) {
|
|
global.TarinaiItemRegistry = Object.freeze({
|
|
food: global.TarinaiFoodRegistry,
|
|
effect: global.TarinaiEffectRegistry,
|
|
});
|
|
})(typeof window !== "undefined" ? window : globalThis);
|