(card *Card)
| 62 | } |
| 63 | |
| 64 | func (selection *Selection) Add(card *Card) { |
| 65 | if !card.selected { |
| 66 | card.Page.Raise(card) |
| 67 | } |
| 68 | card.Select() |
| 69 | selection.Cards[card] = true |
| 70 | } |
| 71 | |
| 72 | func (selection *Selection) Remove(card *Card) { |
| 73 | card.Deselect() |