Starship/.vscode/settings.json
petrie911 931f589177
Fully split and name libultra, and also decomp 3404 (#16)
* libultra sorted out

* missed some things

* forgot some things

* one more thing

* not actually libultra

* also split out the data into three sections

* finer split

* parameter is a thing, apparently

* named everything in libultra

* make
2023-11-04 19:45:03 -03:00

35 lines
816 B
JSON

{
"python.formatting.autopep8Args": [
"--ignore",
"E402"
],
"search.useIgnoreFiles": false,
"search.exclude": {
"**/.git": true,
"**/.github": true,
"build/**": true,
"expected/**": true,
"tools/**": true,
"tools/aspatch/**": false,
"tools/gfxsotn/**": false,
},
"defines": [
"_LANGUAGE_C", // For gbi.h
],
"files.associations": {
"hud.h": "c",
"global.h": "c",
"ultratypes.h": "c",
"mbi.h": "c",
"common.h": "c",
"sf64math.h": "c",
"ultra64.h": "c",
"os_internal.h": "c",
"structs.h": "c",
"stdint.h": "c",
"xstdio.h": "c",
"controller.h": "c",
"os_version.h": "c",
"stdbool.h": "c"
},
}