ShatteredSword/src/main.ts

25 lines
840 B
TypeScript
Raw Normal View History

import Game from "./Wolfie2D/Loop/Game";
2022-03-31 20:52:05 -04:00
import MainMenu from "./shattered_sword/Scenes/MainMenu";
2020-08-03 16:51:20 -04:00
// The main function is your entrypoint into Wolfie2D. Specify your first scene and any options here.
(function main(){
// Run any tests
runTests();
// Set up options for our game
let options = {
canvasSize: {x: 1200, y: 800}, // The size of the game
clearColor: {r: 0, g: 0, b: 0}, // The color the game clears to
2022-03-31 20:52:05 -04:00
useWebGL: false, // Tell the game we want to use webgl
showDebug: true // Whether to show debug messages. You can change this to true if you want
}
2021-02-15 19:44:47 -05:00
// Create a game with the options specified
const game = new Game(options);
2020-08-03 16:51:20 -04:00
2021-02-15 19:44:47 -05:00
// Start our game
2022-03-31 20:52:05 -04:00
game.start(MainMenu, {});
})();
function runTests(){};