trinket/magic.go

12 lines
134 B
Go
Raw Normal View History

2017-10-08 22:17:53 -07:00
package main
//Spell contains all the magic spells
type Spell struct {
Name string
Damage int
Cost int
Level int
Active bool
}