Files
Naked-Desire/Source/NakedDesire/Commissions/CommissionConstraint.cpp
T
2026-06-03 15:17:02 +03:00

21 lines
362 B
C++

// © 2025 Naked People Team. All Rights Reserved.
#include "CommissionConstraint.h"
void UCommissionConstraint::Activate(ANakedDesireCharacter* InPlayer)
{
Player = InPlayer;
OnActivate();
}
void UCommissionConstraint::Deactivate()
{
OnDeactivate();
Player = nullptr;
}
FText UCommissionConstraint::GetDescription() const
{
return FText::GetEmpty();
}