mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-05-10 18:10:32 +00:00
8 lines
154 B
C#
8 lines
154 B
C#
namespace Ryujinx.Memory
|
|
{
|
|
public interface IRefCounted
|
|
{
|
|
void IncrementReferenceCount();
|
|
void DecrementReferenceCount();
|
|
}
|
|
}
|