From 7d15069e54b05c40a386b2321ac00f01967d9cb5 Mon Sep 17 00:00:00 2001 From: HolographicHat Date: Mon, 26 Jan 2026 16:45:37 +0800 Subject: [PATCH] move documents --- YaeAchievementLib/src/Application.cs | 2 +- README.md => docs/README.md | 0 README_EN.md => docs/README_EN.md | 0 README_JP.md => docs/README_JP.md | 0 Tutorial.md => docs/Tutorial.md | 0 Tutorial_EN.md => docs/Tutorial_EN.md | 0 Tutorial_JP.md => docs/Tutorial_JP.md | 0 7 files changed, 1 insertion(+), 1 deletion(-) rename README.md => docs/README.md (100%) rename README_EN.md => docs/README_EN.md (100%) rename README_JP.md => docs/README_JP.md (100%) rename Tutorial.md => docs/Tutorial.md (100%) rename Tutorial_EN.md => docs/Tutorial_EN.md (100%) rename Tutorial_JP.md => docs/Tutorial_JP.md (100%) diff --git a/YaeAchievementLib/src/Application.cs b/YaeAchievementLib/src/Application.cs index 6bdd0f1..ec27055 100644 --- a/YaeAchievementLib/src/Application.cs +++ b/YaeAchievementLib/src/Application.cs @@ -98,7 +98,7 @@ internal static unsafe class Application { return 0; } - private static ulong ReadRawVarInt64(this Span span, ref int offset) { + private static ulong ReadRawVarInt64(Span span, ref int offset) { ulong result = 0; for (var i = 0; i < 8; i++) { var b = span[offset++]; diff --git a/README.md b/docs/README.md similarity index 100% rename from README.md rename to docs/README.md diff --git a/README_EN.md b/docs/README_EN.md similarity index 100% rename from README_EN.md rename to docs/README_EN.md diff --git a/README_JP.md b/docs/README_JP.md similarity index 100% rename from README_JP.md rename to docs/README_JP.md diff --git a/Tutorial.md b/docs/Tutorial.md similarity index 100% rename from Tutorial.md rename to docs/Tutorial.md diff --git a/Tutorial_EN.md b/docs/Tutorial_EN.md similarity index 100% rename from Tutorial_EN.md rename to docs/Tutorial_EN.md diff --git a/Tutorial_JP.md b/docs/Tutorial_JP.md similarity index 100% rename from Tutorial_JP.md rename to docs/Tutorial_JP.md