16 lines
275 B
C#
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;
|
|
}
|
|
}
|