fontLoader is responsible for managing `.ttf` files within `engo.Files`
| 24 | |
| 25 | // fontLoader is responsible for managing `.ttf` files within `engo.Files` |
| 26 | type fontLoader struct { |
| 27 | fonts map[string]FontResource |
| 28 | } |
| 29 | |
| 30 | // Load processes the data stream and parses it as a freetype font |
| 31 | func (i *fontLoader) Load(url string, data io.Reader) error { |
nothing calls this directly
no outgoing calls
no test coverage detected