Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Reviewed-on: #2816 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Co-committed-by: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com>
9 lines
269 B
TypeScript
9 lines
269 B
TypeScript
import { ExportCustoms } from "warframe-public-export-plus";
|
|
import { catBreadHash } from "./stringHelpers.ts";
|
|
|
|
export const skinLookupTable: Record<number, string> = {};
|
|
|
|
for (const key of Object.keys(ExportCustoms)) {
|
|
skinLookupTable[catBreadHash(key)] = key;
|
|
}
|