2025-01-22 16:18:30 +01:00
|
|
|
package iron.object;
|
|
|
|
|
|
2026-05-12 23:54:06 -07:00
|
|
|
#if lnx_gpu_particles
|
|
|
|
|
typedef ParticleSystem = ParticleSystemGPU;
|
|
|
|
|
#elseif lnx_cpu_particles
|
|
|
|
|
typedef ParticleSystem = ParticleSystemCPU;
|
|
|
|
|
#else
|
|
|
|
|
class ParticleSystem { public function new() { } }
|
2025-01-22 16:18:30 +01:00
|
|
|
#end
|