Files
Il2CppInspectorRedux/Il2CppInspector.Common/FileFormatStreams/Export.cs

17 lines
310 B
C#

/*
Copyright 2020 Katy Coe - http://www.djkaty.com - https://github.com/djkaty
All rights reserved.
*/
namespace Il2CppInspector
{
// A code file function export
public class Export
{
public int Ordinal;
public string Name;
public ulong VirtualAddress;
}
}