monster.SetStats(Stats(14, 6, 6, 6, 6, 6, 6));
monster.SetReward(3, 5);
ComplexAnimation monsterAttackAnimation(&monsterSprite, 4 * framerate);
- monsterAttackAnimation.AddFrame(0, 1, Vector<int>(16, 0));
- monsterAttackAnimation.AddFrame(0, 0, Vector<int>(16, 0));
- monsterAttackAnimation.AddFrame(0, 1, Vector<int>(16, 0));
+ monsterAttackAnimation.AddFrame(0, 1, Vector<int>(0, 16));
+ monsterAttackAnimation.AddFrame(0, 0, Vector<int>(0, 16));
+ monsterAttackAnimation.AddFrame(0, 1, Vector<int>(0, 16));
monster.SetAttackAnimation(&monsterAttackAnimation);
SDL_Surface *monsterMeleeImg(IMG_Load("test-data/attack-monster.png"));
Sprite monsterMeleeSprite(monsterMeleeImg, 96, 64);