From e4df323266069011043bc1565f16e56e18356c62 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 16 Jul 2018 17:06:16 -0700 Subject: [PATCH] EVORE should not be public --- BurnOutSharp/EVORE.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/BurnOutSharp/EVORE.cs b/BurnOutSharp/EVORE.cs index 3331676e..140012dc 100644 --- a/BurnOutSharp/EVORE.cs +++ b/BurnOutSharp/EVORE.cs @@ -24,15 +24,15 @@ using System.Threading; namespace BurnOutSharp { - struct Section + internal static class EVORE { - public uint iVirtualSize; - public uint iVirtualOffset; - public uint iRawOffset; - } + private struct Section + { + public uint iVirtualSize; + public uint iVirtualOffset; + public uint iRawOffset; + } - public static class EVORE - { private const int WaitSeconds = 20; private static Process StartSafe(string file)