Files
NebulaLauncher/Nebula.Launcher/ViewModels/InstanceKeyPool.cs
2026-03-15 15:47:20 +03:00

16 lines
287 B
C#

namespace Nebula.Launcher.ViewModels;
public sealed class InstanceKeyPool
{
private int _nextId = 1;
public InstanceKey Take()
{
return new InstanceKey(_nextId++);
}
public void Free(InstanceKey id)
{
// TODO: make some free logic later
}
}