namespace BurnOutSharp.Models.PortableExecutable { /// /// An accelerator table is one resource entry in a resource file. The structure definition /// provided here is for explanation only; it is not present in any standard header file. /// /// public class AcceleratorTableResource { /// /// Each entry consists of a resource header and the data for that resource. /// public ResourceHeader ResourceHeader; /// /// Accelerator table data /// public AcceleratorTableEntry[] AcceleratorTable; } }