General cleanup and refactor.

This commit is contained in:
2022-03-07 07:36:32 +00:00
parent 27900ec144
commit 8d40f3e395
60 changed files with 1034 additions and 1156 deletions

View File

@@ -37,13 +37,15 @@
// Copyright © 2020-2022 Rebecca Wallander
// ****************************************************************************/
using System;
using System.Diagnostics.CodeAnalysis;
// ReSharper disable UnusedMember.Global
namespace Aaru.CommonTypes.Enums;
using System;
using System.Diagnostics.CodeAnalysis;
/// <summary>Track (as partitioning element) types.</summary>
public enum TrackType : byte
{
@@ -421,5 +423,5 @@ public enum LinearMemoryType
/// <summary>Read-write volatile memory for character</summary>
CharacterRAM = 12,
/// <summary>Trainer, or hack</summary>
Trainer = 13
Trainer = 13
}