openFile is the mobile-specific way of opening a file
(url string)
| 132 | |
| 133 | // openFile is the mobile-specific way of opening a file |
| 134 | func openFile(url string) (io.ReadCloser, error) { |
| 135 | return nil, errors.New("binding does not open files this way. utilize go-bindata instead") |
| 136 | } |
| 137 | |
| 138 | // mobileDraw runs once per frame. RunIteration for the other backends |
| 139 | func mobileDraw(defaultScene Scene) { |