8#ifndef GALAXY_COMPONENTS_POINT_HPP_
9#define GALAXY_COMPONENTS_POINT_HPP_
11#include "galaxy/fs/Serializable.hpp"
21 class Point final :
public fs::Serializable
34 Point(
const nlohmann::json& json);
64 void deserialize(
const nlohmann::json& json)
override;
Point & operator=(const Point &)=delete
Copy assignment operator.
Point(const Point &)=delete
Copy constructor.
void deserialize(const nlohmann::json &json) override
Deserializes from object.
graphics::Point m_shape
Shape.
virtual ~Point()
Destructor.
Point & operator=(Point &&)
Move assignment operator.
nlohmann::json serialize() override
Serializes object.