Created paper doll struct

This commit is contained in:
mollusk 2017-10-11 06:33:08 -07:00
parent 65c896dd17
commit 721ceb60a7

View File

@ -6,6 +6,12 @@ type Weapon struct {
Active bool
}
type PaperDoll struct {
Weapon Weapon
}
var (
Broadsword = Weapon{
Name: "Broadsword",