blob: 5af1a7052a7049635d397f024acb8dcc3034c683 [file] [log] [blame]
#ifndef _RIVE_DISTANCE_CONSTRAINT_HPP_
#define _RIVE_DISTANCE_CONSTRAINT_HPP_
#include "rive/generated/constraints/distance_constraint_base.hpp"
#include <stdio.h>
namespace rive
{
class DistanceConstraint : public DistanceConstraintBase
{
public:
void constrain(TransformComponent* component) override;
void distanceChanged() override;
void modeValueChanged() override;
};
} // namespace rive
#endif