refactor(religions): define basic data

This commit is contained in:
Azgaar 2022-08-26 01:28:19 +03:00
parent 17e96524fb
commit 901120401f
11 changed files with 280 additions and 179 deletions

View file

@ -0,0 +1,7 @@
export function expandReligions(
religions: Pick<IReligion, "i" | "center" | "culture" | "expansion" | "expansionism">[]
) {
const religionIds = new Uint16Array();
return religionIds;
}