From a43a397ad769f2ce9e66cc87a255a34932496112 Mon Sep 17 00:00:00 2001 From: MrPiglr Date: Sun, 18 Jan 2026 03:49:40 +0000 Subject: [PATCH] modified: src/lib/templates.ts --- src/lib/templates.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/templates.ts b/src/lib/templates.ts index f77c360..b0fc8f6 100644 --- a/src/lib/templates.ts +++ b/src/lib/templates.ts @@ -11,6 +11,7 @@ export interface ScriptTemplate { platform: PlatformId; } + export function getTemplatesForPlatform(platform: PlatformId): ScriptTemplate[] { return templates.filter(t => t.platform === platform); }