| 87 | private: |
| 88 | |
| 89 | void writeDocumentFile(std::ofstream& s, app::Document* doc) { |
| 90 | write32(s, doc->sprite()->id()); |
| 91 | write_string(s, doc->filename()); |
| 92 | } |
| 93 | |
| 94 | void writeSprite(std::ofstream& s, Sprite* spr) { |
| 95 | write8(s, spr->pixelFormat()); |
nothing calls this directly
no test coverage detected