Migrate rendering from oop to dod
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user