10 lines
366 B
TypeScript
10 lines
366 B
TypeScript
import { emptyProject, type Project, type ScriptAsset } from "./schema.ts";
|
|
|
|
/** New projects contain no game content or pre-bound behaviors. */
|
|
export const builtinScripts = (): ScriptAsset[] => [];
|
|
|
|
// Preserve the optional flag for callers written before the empty-only release.
|
|
export function defaultProject(_blank = true): Project {
|
|
return emptyProject();
|
|
}
|