Skip to content

Commit

Permalink
Initial commit from MakeCode Arcade.
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-kulcsar committed Jun 24, 2024
1 parent e361ef3 commit 6c4f299
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 29 deletions.
24 changes: 0 additions & 24 deletions main.ts
Original file line number Diff line number Diff line change
@@ -1,24 +0,0 @@
/**
* This is the main file for your project.
*
* Create images, tilemaps, animations, and songs using the
* asset explorer in VS Code. You can reference those assets
* using the tagged templates on the assets namespace:
*
* assets.image`myImageName`
* assets.tilemap`myTilemapName`
* assets.tile`myTileName`
* assets.animation`myAnimationName`
* assets.song`mySongName`
*
* New to MakeCode Arcade? Try creating a new project using one
* of the templates to learn about Sprites, Tilemaps, Animations,
* and more! Or check out the reference docs here:
*
* https://arcade.makecode.com/reference
*/

game.onUpdate(() => {
// Code in this function will run once per frame. MakeCode
// Arcade games run at 30 FPS
});
15 changes: 10 additions & 5 deletions pxt.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
{
"name": "playing_card_skillmap_assets",
"version": "0.0.0",
"dependencies": {
"device": "*"
},
"files": [
"main.ts"
],
"testDependencies": {},
"targetVersions": {
"target": "1.12.53",
"targetId": "arcade"
},
"supportedTargets": [
"arcade"
],
"dependencies": {
"device": "*"
},
"testDependencies": {}
}
"preferredEditor": "tsprj"
}

0 comments on commit 6c4f299

Please sign in to comment.