1 package adventure 2 3 type Quest struct { 4 Discovered bool 5 Title string 6 Description string 7 } 8 9 func (q *Quest) Complete() bool { 10 return false 11 } 12
View as plain text