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

16 lines
275 B
C#

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