mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-17 17:34:36 +08:00
8 lines
134 B
C#
8 lines
134 B
C#
namespace DCFApixels.DragonECS
|
|
{
|
|
public readonly struct Ref<T> where T : class
|
|
{
|
|
public readonly T target;
|
|
}
|
|
}
|