blob: ddc2ec4f2446f411f5ec7fb579c1f4c3767fe556 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef PKE_SERIALIZATION_CAMERA_HPP
#define PKE_SERIALIZATION_CAMERA_HPP
#include "serialization.hpp"
#include "camera.hpp"
bool pke_serialize_camera(srlztn_serialize_helper *helper, const PkeCamera *cam);
bool pke_deserialize_camera(srlztn_deserialize_helper *helper);
#endif /* PKE_SERIALIZATION_CAMERA_HPP */
|