feat: spawning particles with object pooling

This commit is contained in:
Gerard Gascón 2024-04-19 15:57:25 +02:00
parent 858e49e1d9
commit efac0019ba
14 changed files with 235 additions and 21 deletions

View file

@ -0,0 +1,5 @@
namespace Pooling {
public interface IPooledObject {
void OnObjectSpawn();
}
}