You've already forked Dpr-ScriptsOnly
mirror of
https://github.com/izzy2lost/Dpr-ScriptsOnly.git
synced 2026-03-10 11:49:05 -07:00
16 lines
319 B
C#
16 lines
319 B
C#
namespace SmartPoint.AssetAssistant
|
|
{
|
|
public class RefCounted
|
|
{
|
|
public int referencedCount;
|
|
|
|
public RefCounted()
|
|
{
|
|
referencedCount = 1;
|
|
}
|
|
|
|
public virtual int AddRef() => referencedCount++;
|
|
|
|
public virtual int Release() => referencedCount--;
|
|
}
|
|
} |