Implement and output events

This commit is contained in:
Katy Coe
2017-11-28 13:57:16 +01:00
parent 1a81e9a0fb
commit 09fd023a9f
6 changed files with 93 additions and 5 deletions

View File

@@ -226,4 +226,15 @@ namespace Il2CppInspector
public int customAttributeIndex;
public uint token;
}
public class Il2CppEventDefinition
{
public int nameIndex;
public int typeIndex;
public int add;
public int remove;
public int raise;
public int customAttributeIndex;
public uint token;
}
}