/PizzaDeliverySimulator

Primary LanguageTypeScriptMIT LicenseMIT

Prerequisites

To use this Project, you need to install Node.js. We recommend that you use the latest LTS version available.

To check that Node.js was installed correctly, type the following commands in your terminal client:

node -v
npm -v

After that run

npm install

And start the project by calling

npm start

To Build this project follow official Electron Forge Documentation Link

Overview Details
image image

Each game has following matrix generator

# Game 2
[
  [0,0,0,0,0,0,0,0],
  [0,0,0,0,0,0,0,0],
  [0,0,0,0,0,0,0,0],
  [0,0,0,0,0,0,0,0],
  [0,0,0,0,0,0,2,0],
  [0,0,0,0,0,2,0,0],
  [0,0,0,0,0,0,0,0],
  [1,0,0,2,0,0,0,0],
  [0,0,0,0,0,0,0,0],
  [0,0,0,0,0,0,0,0]
]

# Game 9
[
  [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
  [0,0,0,2,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0,0,0],
  [0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0],
  [0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0],
  [0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0],
  [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
  [0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0],
  [0,0,0,0,2,0,0,0,0,0,2,2,0,2,0,0,0,0,0,0,0],
  [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
  [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
  [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
]