10 lines
220 B
Haxe
10 lines
220 B
Haxe
package iron.object;
|
|
|
|
#if lnx_gpu_particles
|
|
typedef ParticleSystem = ParticleSystemGPU;
|
|
#elseif lnx_cpu_particles
|
|
typedef ParticleSystem = ParticleSystemCPU;
|
|
#else
|
|
class ParticleSystem { public function new() { } }
|
|
#end
|