create-excalibur
Version:
ExcaliburJS starter project
22 lines (20 loc) • 504 B
JavaScript
import { terminal, textBlue, textGray } from "../console.js";
export default function intro() {
const sword = `
/| ________________
O|===|${textBlue("*")} >________________>
\\|
`;
//
terminal.line();
// terminal.blank();
terminal.print(" Welcome to Excalibur JS! ", textBlue);
terminal.print(sword);
terminal.print(
" Your friendly TypeScript 2D game engine for the web.",
textGray
);
terminal.blank();
terminal.blank();
// terminal.printLine();
}