feat: added preserver class & method to preserve assembly loading

This commit is contained in:
2025-05-03 20:22:35 +03:00
parent f43ab36742
commit 3725a3b0fd
5 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace Syntriax.Engine.Physics2D
{
// This is pretty much so the assembly gets loaded automatically because
// the builds include the assembly but sometimes doesn't link load it at startup.
// I will hopefully one day fix it and remove this.
public static class Preserver
{
public static void Preserve() { }
}
}