1
0

Initial sync

This commit is contained in:
2024-03-15 14:44:21 +01:00
commit d2a1cabe35
59 changed files with 3783 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
// using Nbt.Tag;
// namespace Nbt;
// public class TagNotFoundException : NbtException
// {
// public TagNotFoundException(INbtTag parentTag, INbtPathElement tagPathElement)
// {
// ParentTag = parentTag;
// TagPathElement = tagPathElement;
// }
// public TagNotFoundException(INbtTag parentTag, INbtPathElement tagPathElement, string? message) : base(message)
// {
// ParentTag = parentTag;
// TagPathElement = tagPathElement;
// }
// public INbtTag ParentTag { get; }
// public INbtPathElement TagPathElement { get; }
// }