Files
riversong-code-showcase/Source/Riversong/Game/CommonServices/Pooling/PooledObject.cs
2026-05-21 16:03:55 +02:00

9 lines
169 B
C#

using UnityEngine;
namespace DanieleMarotta.RiversongCodeShowcase
{
public class PooledObject : MonoBehaviour
{
public int PoolKey { get; set; }
}
}