Rename MEMBERS separator comments to FIELDS.

This commit is contained in:
Ray Koopa 2020-06-27 12:31:43 +02:00
parent e72f6041e3
commit e2b41157db
3 changed files with 5 additions and 5 deletions

View File

@ -175,7 +175,7 @@ namespace Syroot.Worms.Armageddon.ProjectX
[DebuggerDisplay("LibraryItem Key={Key} Type={Type}")] [DebuggerDisplay("LibraryItem Key={Key} Type={Type}")]
public class LibraryItem public class LibraryItem
{ {
// ---- MEMBERS ------------------------------------------------------------------------------------------------ // ---- FIELDS -------------------------------------------------------------------------------------------------
private object _value; private object _value;

View File

@ -10,7 +10,7 @@ namespace Syroot.Worms.Armageddon
[StructLayout(LayoutKind.Sequential)] [StructLayout(LayoutKind.Sequential)]
public struct MapGeneratorSettings public struct MapGeneratorSettings
{ {
// ---- MEMBERS ------------------------------------------------------------------------------------------------ // ---- FIELDS -------------------------------------------------------------------------------------------------
/// <summary> /// <summary>
/// The random seed to generate the land shape (no effect in BIT files). /// The random seed to generate the land shape (no effect in BIT files).

View File

@ -17,7 +17,7 @@ namespace Syroot.Worms.Core.Riff
private const string _signature = "RIFF"; private const string _signature = "RIFF";
// ---- MEMBERS ------------------------------------------------------------------------------------------------ // ---- FIELDS -------------------------------------------------------------------------------------------------
private static readonly Dictionary<Type, TypeData> _typeDataCache = new Dictionary<Type, TypeData>(); private static readonly Dictionary<Type, TypeData> _typeDataCache = new Dictionary<Type, TypeData>();