0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 05:10:46 -05:00
assembly-tool/Assets/Templates/Settings.jsonc

34 lines
608 B
JSON
Raw Normal View History

2024-06-12 12:42:50 -04:00
{
"MappingPath": "",
"TypeNamesToMatch": [ // These are the only types considered when looking for a match
"Class",
"GClass",
"GStruct",
"GControl",
"ValueStruct",
"Interface",
"GInterface"
],
"MethodNamesToIgnore": [ // Don't try to match on these
"method_",
"smethod_",
"vmethod_"
],
"FieldNamesToIgnore": [ // Don't try to match on these
"action",
"bool",
"dictionary",
"list",
"vector",
"int",
"float",
"single",
"double",
"string",
"transform",
"ushort",
"byte",
"object",
"gameobject"
]
}