Integrate $1 into LumiCharacter

This commit is contained in:
2025-01-04 04:02:26 -05:00
parent 1f0533daf1
commit f0efc9639c
4 changed files with 131 additions and 13 deletions
@@ -54,6 +54,11 @@ const FVector2D& USpellOverlay::GetLastPoint()
return this->SpellPoints.Last();
}
const TArray<FVector2D>* USpellOverlay::GetSpellPoints() const
{
return &this->SpellPoints;
}
const FVector2D& USpellOverlay::GetLastPoint(const FVector2D& CurrPoint)
{
return this->SpellPoints.Num() > 0 ? this->SpellPoints.Last() : CurrPoint;
@@ -45,6 +45,9 @@ public:
const FVector2D&
GetLastPoint();
const TArray<FVector2D>*
GetSpellPoints() const;
const FVector2D&
GetLastPoint(const FVector2D& CurrPoint);