blob: 9311b4b2c384f321f95e7950939a674ed937053c [file] [log] [blame]
#ifndef _RIVE_TRANSLATION_CONSTRAINT_HPP_
#define _RIVE_TRANSLATION_CONSTRAINT_HPP_
#include "rive/generated/constraints/translation_constraint_base.hpp"
#include <stdio.h>
namespace rive {
class TranslationConstraint : public TranslationConstraintBase {
public:
void constrain(TransformComponent* component) override;
};
} // namespace rive
#endif