Wayverb
orientation.h
1 #pragma once
2 
3 #include "core/serialize/vec.h"
4 
5 #include "core/orientation.h"
6 
7 template <typename Archive>
8 void wayverb::core::orientation::serialize(Archive& archive) {
9  archive(cereal::make_nvp("pointing", pointing_),
10  cereal::make_nvp("up", up_));
11 }
12