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