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}")]
public class LibraryItem
{
// ---- MEMBERS ------------------------------------------------------------------------------------------------
// ---- FIELDS -------------------------------------------------------------------------------------------------
private object _value;

View File

@ -10,7 +10,7 @@ namespace Syroot.Worms.Armageddon
[StructLayout(LayoutKind.Sequential)]
public struct MapGeneratorSettings
{
// ---- MEMBERS ------------------------------------------------------------------------------------------------
// ---- FIELDS -------------------------------------------------------------------------------------------------
/// <summary>
/// The random seed to generate the land shape (no effect in BIT files).
@ -69,8 +69,8 @@ namespace Syroot.Worms.Armageddon
/// Represents the water color used for the map (deprecated, used only in Worms Armageddon 1.0).
/// </summary>
public int WaterColor;
}
}
/// <summary>
/// Represents the possible land styles.
/// </summary>

View File

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