Files
LNXSDK/leenkx/Sources/iron/object/ParticleSystem.hx

10 lines
220 B
Haxe
Raw Normal View History

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