mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 09:35:28 +00:00
252ee7f8c4
Drop Potion-specific range check, it's irrelevant
31 lines
570 B
C++
31 lines
570 B
C++
#ifndef CSM_TOOLS_EFFECTLISTCHECK_H
|
|
#define CSM_TOOLS_EFFECTLISTCHECK_H
|
|
|
|
#include <vector>
|
|
|
|
namespace ESM
|
|
{
|
|
struct IndexedENAMstruct;
|
|
struct Ingredient;
|
|
}
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Messages;
|
|
}
|
|
|
|
namespace CSMWorld
|
|
{
|
|
class UniversalId;
|
|
}
|
|
|
|
namespace CSMTools
|
|
{
|
|
void effectListCheck(
|
|
const std::vector<ESM::IndexedENAMstruct>& list, CSMDoc::Messages& messages, const CSMWorld::UniversalId& id);
|
|
void ingredientEffectListCheck(
|
|
const ESM::Ingredient& ingredient, CSMDoc::Messages& messages, const CSMWorld::UniversalId& id);
|
|
}
|
|
|
|
#endif
|