aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Memory/IRefCounted.cs
blob: e0a311d6da192b29f69dff1e34f9bfd4d5c95ad4 (plain) (blame)
1
2
3
4
5
6
7
8
namespace Ryujinx.Memory
{
    public interface IRefCounted
    {
        void IncrementReferenceCount();
        void DecrementReferenceCount();
    }
}