Migrate rendering from oop to dod

This commit is contained in:
2025-09-16 20:55:20 +09:00
parent 74bb2ccda5
commit 6a504cefc8
20 changed files with 263 additions and 449 deletions

View File

@@ -1,16 +0,0 @@
namespace Ghost.Core;
public ref struct Ref<T>
{
private ref T _value;
public ref T Value
{
get => ref _value;
}
public Ref(ref T value)
{
_value = ref value;
}
}