summaryrefslogtreecommitdiff
path: root/src/serialization-font.hpp
blob: 9261a19f898a0a5668e3f3734dcb11b1872c25e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef PKE_SERIALIZATION_FONT_HPP
#define PKE_SERIALIZATION_FONT_HPP

#include "serialization.hpp"
#include "font.hpp"

bool pke_serialize_font_render(srlztn_serialize_helper *h, FontRender *fr);
bool pke_deserialize_font_render(srlztn_deserialize_helper *h, FontRender **fr);

bool pke_serialize_font_render_settings(srlztn_serialize_helper *h, FontRenderSettings *frs);
bool pke_deserialize_font_render_settings(srlztn_deserialize_helper *h, FontRenderSettings *frs);

#endif /* PKE_SERIALIZATION_FONT_HPP */