blob: 5fda832aca4f68b33f00bd14f2c3c6b758fddeb2 [file] [log] [blame]
#ifndef _RIVE_MESSAGE_HPP_
#define _RIVE_MESSAGE_HPP_
#include "rive/math/vec2d.hpp"
#include <string>
namespace rive {
struct Message {
// TODO -- how to represent this?
// Perhaps some sort of JSON-like object: key-value pairs?
// For now, store a string so we can test it...
std::string m_Str;
};
} // namespace rive
#endif