AcManager.Tools.SharedMemory.AcSharedMemory.IsGameProcess C# (CSharp) Method

IsGameProcess() private static method

private static IsGameProcess ( Process process ) : bool
process System.Diagnostics.Process
return bool
        private static bool IsGameProcess(Process process) {
            var filename = process.GetFilenameSafe();
            return filename == null || AcRootDirectory.CheckDirectory(Path.GetDirectoryName(filename));
        }