| 18 | ) |
| 19 | |
| 20 | type MenuView struct { |
| 21 | director *Director |
| 22 | paths []string |
| 23 | texture *Texture |
| 24 | nx, ny, i, j int |
| 25 | scroll int |
| 26 | t float64 |
| 27 | buttons [8]bool |
| 28 | times [8]float64 |
| 29 | typeBuffer string |
| 30 | typeTime float64 |
| 31 | } |
| 32 | |
| 33 | func NewMenuView(director *Director, paths []string) View { |
| 34 | view := MenuView{} |
nothing calls this directly
no outgoing calls
no test coverage detected