First commit.
This commit is contained in:
40
explosion.go
Normal file
40
explosion.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user