mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-04-19 08:11:41 +09:00
9 lines
154 B
C#
9 lines
154 B
C#
namespace Ryujinx.Memory
|
|
{
|
|
public interface IRefCounted
|
|
{
|
|
void IncrementReferenceCount();
|
|
void DecrementReferenceCount();
|
|
}
|
|
}
|