mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-01-01 07:37:01 +00:00
8 lines
154 B
C#
8 lines
154 B
C#
namespace Ryujinx.Memory
|
|
{
|
|
public interface IRefCounted
|
|
{
|
|
void IncrementReferenceCount();
|
|
void DecrementReferenceCount();
|
|
}
|
|
}
|