I am confused!
void AnimationEngine::AddAnimationSet(Animation* animations)
{
AnimationSet* newSet = new AnimationSet();
for(int i = 0; i < (sizeof(animations) / sizeof(Animation)); i++)
{
for(int n = 0; n < animations[i].AnimationConditions.size(); n++)
{
//newSet->conditions is of type std::vector<std::vector<myType>>
//animations[i].AnimationConditions is of type std::vector<myType>
newSet->conditions[i] = animations[i].AnimationConditions;
}
}
//Stuff unrelated to error...
}
Getting a "no operator "=" matches these operands"