blob: d19581394f3f1e2fb1de8c120f86010bf2794e92 [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;
};
} // namespace rive
#endif