19 lines
385 B
C#
Executable File
19 lines
385 B
C#
Executable File
namespace Nbt.Tag;
|
|
|
|
public sealed class NbtEnd : INbtTag
|
|
{
|
|
public static readonly NbtEnd Value = new();
|
|
|
|
private NbtEnd() { }
|
|
|
|
public NbtTagType Type => NbtTagType.End;
|
|
|
|
INbtTag INbtTag.Copy() => this;
|
|
|
|
public bool Equals(INbtTag? other) => this == other;
|
|
|
|
public override bool Equals(object? obj) => this == obj;
|
|
|
|
public override int GetHashCode() => 0;
|
|
|
|
} |