2020-12-07 03:11:13 +00:00
|
|
|
import { provideSingleton } from '@ccms/container'
|
2023-02-08 08:23:05 +00:00
|
|
|
import { particle } from '@ccms/api'
|
2020-12-07 03:11:13 +00:00
|
|
|
|
|
|
|
@provideSingleton(particle.ParticleManager)
|
|
|
|
export class SpongeParticleManager extends particle.ParticleManager {
|
|
|
|
}
|
2023-02-08 08:23:05 +00:00
|
|
|
@provideSingleton(particle.ParticleSpawner)
|
2020-12-07 03:11:13 +00:00
|
|
|
export class SpongeParticleSpawner extends particle.ParticleSpawner {
|
|
|
|
spawn(location: any, particle: particle.Particle) {
|
2023-02-08 08:23:05 +00:00
|
|
|
throw new Error('Not Impl.')
|
|
|
|
}
|
|
|
|
spawnToPlayer(player: any, location: any, particle: particle.Particle) {
|
|
|
|
throw new Error('Not Impl.')
|
2020-12-07 03:11:13 +00:00
|
|
|
}
|
|
|
|
}
|