aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/Common/OnScopeExit.cs
blob: 098d83d135ffef3096d2b919151dbadf607e4619 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System;

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