modified: src/lib/templates.ts

This commit is contained in:
Anderson 2026-01-18 04:30:55 +00:00 committed by GitHub
parent 4ac6c43992
commit 0fdaefdc8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,3 +1,6 @@
export function getTemplatesForPlatform(platform: PlatformId): ScriptTemplate[] {
return templates.filter(t => t.platform === platform);
}
import { PlatformId } from './platforms';
import { uefnTemplates } from './templates-uefn';
import { spatialTemplates } from './templates-spatial';