1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-09-16 09:26:28 +02:00

small cleanup

This commit is contained in:
alexvins
2012-12-16 16:54:20 +00:00
parent 2ddb9e50e7
commit e775ad8804
2 changed files with 3 additions and 3 deletions

View File

@@ -604,7 +604,7 @@ SpellTypes spellType(const CSpell *spell)
default:
return OTHER;
}
};
}
struct PossibleSpellcast
{

View File

@@ -325,12 +325,12 @@ bool isCloser(const CGObjectInstance *lhs, const CGObjectInstance *rhs)
return ln->turns < rn->turns;
return (ln->moveRemains > rn->moveRemains);
};
}
bool compareMovement(HeroPtr lhs, HeroPtr rhs)
{
return lhs->movement > rhs->movement;
};
}
ui64 evaluateDanger(const CGObjectInstance *obj);