mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-03-31 06:08:40 +00:00
8 lines
157 B
C#
8 lines
157 B
C#
namespace Ryujinx.Memory
|
|
{
|
|
public interface IRefCounted
|
|
{
|
|
void IncrementReferenceCount();
|
|
void DecrementReferenceCount();
|
|
}
|
|
}
|