Horizon
warning.hpp
1 #pragma once
2 #include "common/common.hpp"
3 #include <string>
4 
5 namespace horizon {
6 class Warning {
7 public:
8  Warning(const Coordi &c, const std::string &t) : position(c), text(t)
9  {
10  }
11  Coordi position;
12  std::string text;
13 };
14 } // namespace horizon
horizon::Coord< int64_t >
horizon::Warning
Definition: warning.hpp:6