Add HSchool.Content project for JSONC definitions, catalog, and map validation. Update solution structure to include new content and tests projects. Enhance school management to support mod packs and map instances, ensuring proper loading and validation. Revise documentation to reflect these changes and update tests for new functionality.
ci / server (push) Failing after 3m36s
ci / client (push) Successful in 13s

This commit is contained in:
Leonid Pershin
2026-08-18 14:35:09 +03:00
parent 37c39a3beb
commit 1bc75244e8
55 changed files with 2289 additions and 59 deletions
+17
View File
@@ -0,0 +1,17 @@
namespace HSchool.Content;
/// <summary>Warnings from the loader — last-wins collisions, not fatal errors.</summary>
public interface IContentLog
{
void Warning(string message);
}
/// <summary>Drops warnings. Tests that do not care about collisions use this.</summary>
public sealed class NullContentLog : IContentLog
{
public static NullContentLog Instance { get; } = new();
public void Warning(string message)
{
}
}