First commit.

This commit is contained in:
2024-11-05 06:28:08 -05:00
commit c234616fdf
9 changed files with 582 additions and 0 deletions

40
explosion.go Normal file
View File

@@ -0,0 +1,40 @@
package main
type Explosion struct {
Radius float64
Origin Coordinates
cycle int
Active bool
}
func NewExplosion() *Explosion {
return &Explosion{
cycle: 1,
Active: false,
}
}
func (e *Explosion) Draw() {
}
func (e *Explosion) Update() {
if e.Active {
e.Radius = float64(e.cycle) / 0.15
e.cycle++
}
}
func (e *Explosion) SetOrigin(origin Coordinates) {
e.Origin = origin
}
func (e *Explosion) ToggleActivate() {
e.Active = !e.Active
}
func (e *Explosion) Reset() {
e.cycle = 1
}