feat: implement material palette management and core mesh asset handling infrastructure

This commit is contained in:
2026-04-27 22:55:55 +09:00
parent e3a02437c3
commit 631638f3fb
12 changed files with 69 additions and 6114 deletions

View File

@@ -1,2 +1,9 @@
namespace Ghost.Core;
public class Wrapper<T>
{
public T? Value
{
get; set;
}
}