Files
NebulaLauncher/Nebula.Shared/Utils/Ref.cs

6 lines
86 B
C#
Raw Normal View History

2025-01-05 17:05:23 +03:00
namespace Nebula.Shared.Utils;
2024-12-27 08:22:17 +03:00
public class Ref<T>
{
public T Value = default!;
}