Getting Started

Project setup

Open up your code editor of choice (VSCode, Sublime Text, Notepad++, etc.) and create a new project folder. Now create an index.html file and a main.js file. Copy and paste the code below into the index.html file and save it.

            <!DOCTYPE html>
            <html lang="en">
              <body>
                <script type="module" src="./node_modules/simple-game-engine/dist/index.umd.min.js"></script>
                <script type="module" src="main.js"></script>
              </body>
            </html>