@@ -1,5 +1,4 @@
|
|||||||
.local
|
.local
|
||||||
.vscode
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
bombexpert.lua
|
bombexpert.lua
|
||||||
bombexpert/*
|
bombexpert/*
|
||||||
|
|||||||
Vendored
+15
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"Lua.diagnostics.globals": [
|
||||||
|
"explode",
|
||||||
|
"btn",
|
||||||
|
"btnp",
|
||||||
|
"rect",
|
||||||
|
"cls",
|
||||||
|
"spr",
|
||||||
|
"exit",
|
||||||
|
"sfx",
|
||||||
|
"keyp",
|
||||||
|
"key",
|
||||||
|
"pmem"
|
||||||
|
]
|
||||||
|
}
|
||||||
Vendored
+34
@@ -0,0 +1,34 @@
|
|||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
|
// for the documentation about the tasks.json format
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "Run TIC80",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "tic80 --fs=. bombexpert.lua",
|
||||||
|
"problemMatcher": [],
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Build & Run TIC80",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make clean && make build && tic80 --fs=. bombexpert.lua",
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Export assets",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make export_assets",
|
||||||
|
"problemMatcher": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Make build",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make build"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user