trinket/magic.go

12 lines
134 B
Go

package main
//Spell contains all the magic spells
type Spell struct {
Name string
Damage int
Cost int
Level int
Active bool
}