mirror of
https://github.com/Perfare/Il2CppDumper.git
synced 2025-01-09 19:27:17 -03:00
添加更多关键字
This commit is contained in:
parent
248018b274
commit
febc02a69e
1 changed files with 2 additions and 1 deletions
|
@ -24,7 +24,8 @@ namespace Il2CppDumper
|
|||
private List<ulong> genericClassList = new List<ulong>();
|
||||
private StringBuilder arrayClassPreHeader = new StringBuilder();
|
||||
private StringBuilder arrayClassHeader = new StringBuilder();
|
||||
private static HashSet<string> keyword = new HashSet<string>(StringComparer.Ordinal) { "klass", "monitor", "register", "_cs", "auto", "friend", "template", "near", "far" };
|
||||
private static HashSet<string> keyword = new HashSet<string>(StringComparer.Ordinal)
|
||||
{ "klass", "monitor", "register", "_cs", "auto", "friend", "template", "near", "far", "flat", "default" };
|
||||
|
||||
public ScriptGenerator(Il2CppExecutor il2CppExecutor)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue