Horizon
Loading...
Searching...
No Matches
warning.hpp
1#pragma once
2#include "common/common.hpp"
3#include <string>
4
5namespace horizon {
6class Warning {
7public:
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
Definition warning.hpp:6