mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-28 08:56:43 +00:00
9 lines
154 B
C#
9 lines
154 B
C#
namespace Ryujinx.Memory
|
|
{
|
|
public interface IRefCounted
|
|
{
|
|
void IncrementReferenceCount();
|
|
void DecrementReferenceCount();
|
|
}
|
|
}
|