1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-15 16:36:53 +00:00
Ryujinx/Ryujinx.HLE/HOS/Kernel/Common/OnScopeExit.cs

12 lines
268 B
C#
Raw Normal View History

using System;
namespace Ryujinx.HLE.HOS.Kernel.Common
{
readonly struct OnScopeExit : IDisposable
{
private readonly Action _action;
public OnScopeExit(Action action) => _action = action;
public void Dispose() => _action();
}
}