umn-drone / project / libs / transit / src / CelebrationDecorator.cc
CelebrationDecorator.cc
Raw
#include "CelebrationDecorator.h"

bool CelebrationDecorator::IsCompleted(){
    return strategy->IsCompleted();
}

void CelebrationDecorator::Move(IEntity* entity, double dt){
    strategy->Move(entity, dt);
}

IStrategy* CelebrationDecorator::GetStrategy() {
    return strategy;
}