| 58 | } |
| 59 | |
| 60 | void TextBoxCanvasComponent::save_file(cereal::PortableBinaryOutputArchive& a) const { |
| 61 | a(d.p1, d.p2, textBox->get_rich_text_data()); |
| 62 | } |
| 63 | |
| 64 | void TextBoxCanvasComponent::load_file(cereal::PortableBinaryInputArchive& a, VersionNumber version) { |
| 65 | if(version >= VersionNumber(0, 3, 0)) { |
nothing calls this directly
no test coverage detected