papermario/.vscode/c_cpp_properties.json
Ethan Roseman c7a7567d68
FX data/funcs, camera funcs, state funcs (#364)
* fx table work

* fx data

* blah

* render_effects_UI

* split out effects.c

* battle state menu functions

* render_frame

* clean

* clean

* 4 camera funcs

* state_step_end_battle & symbol names

* state_file_select done

* 111f0 done

* .

* PR comments
2021-08-17 03:14:58 +09:00

30 lines
809 B
JSON

{
"version": 4,
"configurations": [
{
"name": "papermario",
"browse": {
"limitSymbolsToIncludedHeaders": true,
"path": [
"${workspaceFolder}/include",
"${workspaceFolder}/src"
]
},
"includePath": [
"${workspaceFolder}/include",
"${workspaceFolder}/ver/us/build/include",
"${workspaceFolder}/src",
"${workspaceFolder}/assets/us"
],
"defines": [
"F3DEX_GBI_2",
"_LANGUAGE_C",
"SCRIPT(...)={}",
"VERSION=us"
],
"cStandard": "c89",
"cppStandard": "c++17"
}
]
}