├── .gitignore ├── LICENSE ├── README.md ├── assets ├── audio │ ├── coin.mp3 │ ├── coin.ogg │ ├── die.mp3 │ ├── die.ogg │ ├── editor.mp3 │ ├── editor.ogg │ ├── ending.mp3 │ ├── ending.ogg │ ├── enemy_die.mp3 │ ├── enemy_die.ogg │ ├── game.mp3 │ ├── game.ogg │ ├── gameover.mp3 │ ├── gameover.ogg │ ├── grow.mp3 │ ├── grow.ogg │ ├── hurt.mp3 │ ├── hurt.ogg │ ├── invincible.mp3 │ ├── invincible.ogg │ ├── jump.mp3 │ ├── jump.ogg │ ├── lifeupgrade.mp3 │ ├── lifeupgrade.ogg │ ├── menu.mp3 │ ├── menu.ogg │ ├── mushroom.mp3 │ ├── mushroom.ogg │ ├── peach.mp3 │ ├── peach.ogg │ ├── shell.mp3 │ ├── shell.ogg │ ├── shoot.mp3 │ ├── shoot.ogg │ ├── success.mp3 │ └── success.ogg ├── backgrounds │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── 07.png │ └── 08.png ├── fonts │ └── Super Mario Bros.ttf ├── index.html ├── lib │ ├── jquery.js │ ├── require.js │ └── system.src.js ├── mario-enemies.png ├── mario-objects.png ├── mario-peach.png ├── mario-sprites.png ├── style.css ├── test.html ├── wallpaper.jpg └── wallpaper2.jpg ├── package.json ├── reference ├── constants.js ├── jquery.js ├── keys.js ├── main.js ├── oop.js ├── sounds.js └── testlevels.js ├── src ├── audio.ts ├── def │ ├── Keys.d.ts │ ├── interfaces.d.ts │ └── jquery.d.ts ├── engine │ ├── Base.ts │ ├── Gauge.ts │ ├── Level.ts │ ├── constants.ts │ └── main.ts ├── figures │ ├── Bullet.ts │ ├── Enemy.ts │ ├── Figure.ts │ ├── GreenTurtle.ts │ ├── Gumpa.ts │ ├── Hero.ts │ ├── Mario.ts │ ├── PipePlant.ts │ ├── Plant.ts │ ├── SpikedTurtle.ts │ ├── StaticPlant.ts │ ├── Turtle.ts │ └── TurtleShell.ts ├── game.ts ├── items │ ├── Coin.ts │ ├── CoinBox.ts │ ├── CoinBoxCoin.ts │ ├── Item.ts │ ├── ItemFigure.ts │ ├── MultipleCoinBox.ts │ ├── Mushroom.ts │ ├── MushroomBox.ts │ ├── Star.ts │ └── StarBox.ts ├── keys.ts ├── matter │ ├── BrownBlock.ts │ ├── Decoration.ts │ ├── Ground.ts │ ├── LeftBush.ts │ ├── LeftGrass.ts │ ├── LeftMiddleBush.ts │ ├── LeftPipe.ts │ ├── LeftPipeGrass.ts │ ├── LeftPipeSoil.ts │ ├── LeftPlantedSoil.ts │ ├── LeftSoil.ts │ ├── LeftTopPipe.ts │ ├── Matter.ts │ ├── MiddleBush.ts │ ├── MiddlePlantedSoil.ts │ ├── RightBush.ts │ ├── RightGrass.ts │ ├── RightMiddleBush.ts │ ├── RightPipe.ts │ ├── RightPipeGrass.ts │ ├── RightPipeSoil.ts │ ├── RightPlantedSoil.ts │ ├── RightSoil.ts │ ├── RightTopPipe.ts │ ├── Soil.ts │ ├── Stone.ts │ ├── TopGrass.ts │ ├── TopLeftCornerGrass.ts │ ├── TopLeftGrass.ts │ ├── TopLeftGrassSoil.ts │ ├── TopLeftRoundedGrass.ts │ ├── TopRightCornerGrass.ts │ ├── TopRightGrass.ts │ ├── TopRightGrassSoil.ts │ └── TopRightRoundedGrass.ts └── testlevels.ts ├── system.conf.js ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/README.md -------------------------------------------------------------------------------- /assets/audio/coin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/coin.mp3 -------------------------------------------------------------------------------- /assets/audio/coin.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/coin.ogg -------------------------------------------------------------------------------- /assets/audio/die.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/die.mp3 -------------------------------------------------------------------------------- /assets/audio/die.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/die.ogg -------------------------------------------------------------------------------- /assets/audio/editor.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/editor.mp3 -------------------------------------------------------------------------------- /assets/audio/editor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/editor.ogg -------------------------------------------------------------------------------- /assets/audio/ending.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/ending.mp3 -------------------------------------------------------------------------------- /assets/audio/ending.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/ending.ogg -------------------------------------------------------------------------------- /assets/audio/enemy_die.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/enemy_die.mp3 -------------------------------------------------------------------------------- /assets/audio/enemy_die.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/enemy_die.ogg -------------------------------------------------------------------------------- /assets/audio/game.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/game.mp3 -------------------------------------------------------------------------------- /assets/audio/game.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/game.ogg -------------------------------------------------------------------------------- /assets/audio/gameover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/gameover.mp3 -------------------------------------------------------------------------------- /assets/audio/gameover.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/gameover.ogg -------------------------------------------------------------------------------- /assets/audio/grow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/grow.mp3 -------------------------------------------------------------------------------- /assets/audio/grow.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/grow.ogg -------------------------------------------------------------------------------- /assets/audio/hurt.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/hurt.mp3 -------------------------------------------------------------------------------- /assets/audio/hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/hurt.ogg -------------------------------------------------------------------------------- /assets/audio/invincible.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/invincible.mp3 -------------------------------------------------------------------------------- /assets/audio/invincible.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/invincible.ogg -------------------------------------------------------------------------------- /assets/audio/jump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/jump.mp3 -------------------------------------------------------------------------------- /assets/audio/jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/jump.ogg -------------------------------------------------------------------------------- /assets/audio/lifeupgrade.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/lifeupgrade.mp3 -------------------------------------------------------------------------------- /assets/audio/lifeupgrade.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/lifeupgrade.ogg -------------------------------------------------------------------------------- /assets/audio/menu.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/menu.mp3 -------------------------------------------------------------------------------- /assets/audio/menu.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/menu.ogg -------------------------------------------------------------------------------- /assets/audio/mushroom.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/mushroom.mp3 -------------------------------------------------------------------------------- /assets/audio/mushroom.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/mushroom.ogg -------------------------------------------------------------------------------- /assets/audio/peach.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/peach.mp3 -------------------------------------------------------------------------------- /assets/audio/peach.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/peach.ogg -------------------------------------------------------------------------------- /assets/audio/shell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/shell.mp3 -------------------------------------------------------------------------------- /assets/audio/shell.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/shell.ogg -------------------------------------------------------------------------------- /assets/audio/shoot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/shoot.mp3 -------------------------------------------------------------------------------- /assets/audio/shoot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/shoot.ogg -------------------------------------------------------------------------------- /assets/audio/success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/success.mp3 -------------------------------------------------------------------------------- /assets/audio/success.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/audio/success.ogg -------------------------------------------------------------------------------- /assets/backgrounds/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/backgrounds/01.png -------------------------------------------------------------------------------- /assets/backgrounds/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/backgrounds/02.png -------------------------------------------------------------------------------- /assets/backgrounds/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/backgrounds/03.png -------------------------------------------------------------------------------- /assets/backgrounds/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/backgrounds/04.png -------------------------------------------------------------------------------- /assets/backgrounds/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/backgrounds/05.png -------------------------------------------------------------------------------- /assets/backgrounds/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/backgrounds/06.png -------------------------------------------------------------------------------- /assets/backgrounds/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/backgrounds/07.png -------------------------------------------------------------------------------- /assets/backgrounds/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/backgrounds/08.png -------------------------------------------------------------------------------- /assets/fonts/Super Mario Bros.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/fonts/Super Mario Bros.ttf -------------------------------------------------------------------------------- /assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/index.html -------------------------------------------------------------------------------- /assets/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/lib/jquery.js -------------------------------------------------------------------------------- /assets/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/lib/require.js -------------------------------------------------------------------------------- /assets/lib/system.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/lib/system.src.js -------------------------------------------------------------------------------- /assets/mario-enemies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/mario-enemies.png -------------------------------------------------------------------------------- /assets/mario-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/mario-objects.png -------------------------------------------------------------------------------- /assets/mario-peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/mario-peach.png -------------------------------------------------------------------------------- /assets/mario-sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/mario-sprites.png -------------------------------------------------------------------------------- /assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/style.css -------------------------------------------------------------------------------- /assets/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/test.html -------------------------------------------------------------------------------- /assets/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/wallpaper.jpg -------------------------------------------------------------------------------- /assets/wallpaper2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/assets/wallpaper2.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/package.json -------------------------------------------------------------------------------- /reference/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/reference/constants.js -------------------------------------------------------------------------------- /reference/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/reference/jquery.js -------------------------------------------------------------------------------- /reference/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/reference/keys.js -------------------------------------------------------------------------------- /reference/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/reference/main.js -------------------------------------------------------------------------------- /reference/oop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/reference/oop.js -------------------------------------------------------------------------------- /reference/sounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/reference/sounds.js -------------------------------------------------------------------------------- /reference/testlevels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/reference/testlevels.js -------------------------------------------------------------------------------- /src/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/audio.ts -------------------------------------------------------------------------------- /src/def/Keys.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/def/Keys.d.ts -------------------------------------------------------------------------------- /src/def/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/def/interfaces.d.ts -------------------------------------------------------------------------------- /src/def/jquery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/def/jquery.d.ts -------------------------------------------------------------------------------- /src/engine/Base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/engine/Base.ts -------------------------------------------------------------------------------- /src/engine/Gauge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/engine/Gauge.ts -------------------------------------------------------------------------------- /src/engine/Level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/engine/Level.ts -------------------------------------------------------------------------------- /src/engine/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/engine/constants.ts -------------------------------------------------------------------------------- /src/engine/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/engine/main.ts -------------------------------------------------------------------------------- /src/figures/Bullet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/Bullet.ts -------------------------------------------------------------------------------- /src/figures/Enemy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/Enemy.ts -------------------------------------------------------------------------------- /src/figures/Figure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/Figure.ts -------------------------------------------------------------------------------- /src/figures/GreenTurtle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/GreenTurtle.ts -------------------------------------------------------------------------------- /src/figures/Gumpa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/Gumpa.ts -------------------------------------------------------------------------------- /src/figures/Hero.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/Hero.ts -------------------------------------------------------------------------------- /src/figures/Mario.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/Mario.ts -------------------------------------------------------------------------------- /src/figures/PipePlant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/PipePlant.ts -------------------------------------------------------------------------------- /src/figures/Plant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/Plant.ts -------------------------------------------------------------------------------- /src/figures/SpikedTurtle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/SpikedTurtle.ts -------------------------------------------------------------------------------- /src/figures/StaticPlant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/StaticPlant.ts -------------------------------------------------------------------------------- /src/figures/Turtle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/Turtle.ts -------------------------------------------------------------------------------- /src/figures/TurtleShell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/figures/TurtleShell.ts -------------------------------------------------------------------------------- /src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/game.ts -------------------------------------------------------------------------------- /src/items/Coin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/items/Coin.ts -------------------------------------------------------------------------------- /src/items/CoinBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/items/CoinBox.ts -------------------------------------------------------------------------------- /src/items/CoinBoxCoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/items/CoinBoxCoin.ts -------------------------------------------------------------------------------- /src/items/Item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/items/Item.ts -------------------------------------------------------------------------------- /src/items/ItemFigure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/items/ItemFigure.ts -------------------------------------------------------------------------------- /src/items/MultipleCoinBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/items/MultipleCoinBox.ts -------------------------------------------------------------------------------- /src/items/Mushroom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/items/Mushroom.ts -------------------------------------------------------------------------------- /src/items/MushroomBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/items/MushroomBox.ts -------------------------------------------------------------------------------- /src/items/Star.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/items/Star.ts -------------------------------------------------------------------------------- /src/items/StarBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/items/StarBox.ts -------------------------------------------------------------------------------- /src/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/keys.ts -------------------------------------------------------------------------------- /src/matter/BrownBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/BrownBlock.ts -------------------------------------------------------------------------------- /src/matter/Decoration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/Decoration.ts -------------------------------------------------------------------------------- /src/matter/Ground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/Ground.ts -------------------------------------------------------------------------------- /src/matter/LeftBush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/LeftBush.ts -------------------------------------------------------------------------------- /src/matter/LeftGrass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/LeftGrass.ts -------------------------------------------------------------------------------- /src/matter/LeftMiddleBush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/LeftMiddleBush.ts -------------------------------------------------------------------------------- /src/matter/LeftPipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/LeftPipe.ts -------------------------------------------------------------------------------- /src/matter/LeftPipeGrass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/LeftPipeGrass.ts -------------------------------------------------------------------------------- /src/matter/LeftPipeSoil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/LeftPipeSoil.ts -------------------------------------------------------------------------------- /src/matter/LeftPlantedSoil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/LeftPlantedSoil.ts -------------------------------------------------------------------------------- /src/matter/LeftSoil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/LeftSoil.ts -------------------------------------------------------------------------------- /src/matter/LeftTopPipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/LeftTopPipe.ts -------------------------------------------------------------------------------- /src/matter/Matter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/Matter.ts -------------------------------------------------------------------------------- /src/matter/MiddleBush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/MiddleBush.ts -------------------------------------------------------------------------------- /src/matter/MiddlePlantedSoil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/MiddlePlantedSoil.ts -------------------------------------------------------------------------------- /src/matter/RightBush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/RightBush.ts -------------------------------------------------------------------------------- /src/matter/RightGrass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/RightGrass.ts -------------------------------------------------------------------------------- /src/matter/RightMiddleBush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/RightMiddleBush.ts -------------------------------------------------------------------------------- /src/matter/RightPipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/RightPipe.ts -------------------------------------------------------------------------------- /src/matter/RightPipeGrass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/RightPipeGrass.ts -------------------------------------------------------------------------------- /src/matter/RightPipeSoil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/RightPipeSoil.ts -------------------------------------------------------------------------------- /src/matter/RightPlantedSoil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/RightPlantedSoil.ts -------------------------------------------------------------------------------- /src/matter/RightSoil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/RightSoil.ts -------------------------------------------------------------------------------- /src/matter/RightTopPipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/RightTopPipe.ts -------------------------------------------------------------------------------- /src/matter/Soil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/Soil.ts -------------------------------------------------------------------------------- /src/matter/Stone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/Stone.ts -------------------------------------------------------------------------------- /src/matter/TopGrass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/TopGrass.ts -------------------------------------------------------------------------------- /src/matter/TopLeftCornerGrass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/TopLeftCornerGrass.ts -------------------------------------------------------------------------------- /src/matter/TopLeftGrass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/TopLeftGrass.ts -------------------------------------------------------------------------------- /src/matter/TopLeftGrassSoil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/TopLeftGrassSoil.ts -------------------------------------------------------------------------------- /src/matter/TopLeftRoundedGrass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/TopLeftRoundedGrass.ts -------------------------------------------------------------------------------- /src/matter/TopRightCornerGrass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/TopRightCornerGrass.ts -------------------------------------------------------------------------------- /src/matter/TopRightGrass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/TopRightGrass.ts -------------------------------------------------------------------------------- /src/matter/TopRightGrassSoil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/TopRightGrassSoil.ts -------------------------------------------------------------------------------- /src/matter/TopRightRoundedGrass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/matter/TopRightRoundedGrass.ts -------------------------------------------------------------------------------- /src/testlevels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/src/testlevels.ts -------------------------------------------------------------------------------- /system.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/system.conf.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UBCx-Software-Engineering/screencastmario/HEAD/webpack.config.js --------------------------------------------------------------------------------