blob: 83a9f9ff1bef3e829feef112f10d4a54563a4819 [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