Files
Il2CppInspectorRedux/Il2CppInspector.Common/FileFormatStreams/Section.cs
2021-01-04 05:26:43 +01:00

22 lines
464 B
C#

/*
Copyright 2020-2021 Katy Coe - http://www.djkaty.com - https://github.com/djkaty
All rights reserved.
*/
namespace Il2CppInspector
{
// A code file function export
public class Section
{
public ulong VirtualStart;
public ulong VirtualEnd;
public uint ImageStart;
public uint ImageEnd;
public bool IsExec;
public bool IsData;
public bool IsBSS;
public string Name;
}
}