Cloud layer.

This commit is contained in:
2024-11-16 12:31:22 -05:00
parent fd46346346
commit 1d65d0046e
9 changed files with 214 additions and 12 deletions

View File

@@ -163,5 +163,11 @@ func (f *FlyEye) SetExplosionInitiated() {
}
func (f *FlyEye) Health() int {
//health bars reserved for special enemies, flyeye is a one
//hitter so returning zero ensure no health bar is rendered
return 0
}
func (f *FlyEye) MaxHealth() int {
return 1
}