mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 14:48:34 +00:00
20 lines
319 B
C#
20 lines
319 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.Horizon.Common
|
|||
|
{
|
|||
|
public struct OnScopeExit : IDisposable
|
|||
|
{
|
|||
|
private readonly Action _action;
|
|||
|
|
|||
|
public OnScopeExit(Action action)
|
|||
|
{
|
|||
|
_action = action;
|
|||
|
}
|
|||
|
|
|||
|
public void Dispose()
|
|||
|
{
|
|||
|
_action();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|