blob: 778febdc2a4d87c7444e2aecce5d32b92245fdae (
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"
void pke_serialize_camera(srlztn_serialize_helper *helper, const PkeCamera *cam);
void pke_deserialize_camera(srlztn_deserialize_helper *helper);
#endif /* PKE_SERIALIZATION_CAMERA_HPP */
|