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

9 lines
169 B
C#

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