Horizon
picture.hpp
1 #pragma once
2 #include <memory>
3 #include "util/picture_data.hpp"
4 
5 namespace horizon {
6 class CanvasPicture {
7 public:
8  float x;
9  float y;
10  float angle;
11  float px_size;
12  bool on_top;
13  float opacity;
14  std::shared_ptr<const PictureData> data;
15 };
16 } // namespace horizon
horizon::CanvasPicture
Definition: picture.hpp:6