#ifndef GUARD_WILDMONINFO_H #define GUARD_WILDMONINFO_H #include struct WildPokemon { int minLevel; int maxLevel; QString species; }; struct WildMonInfo { bool active = false; int encounterRate = 0; QVector wildPokemon; }; struct WildPokemonHeader { QMap wildMons; }; typedef QVector>> Fields; typedef QPair> Field; WildMonInfo getDefaultMonInfo(Field field); WildMonInfo copyMonInfoFromTab(QTableWidget *table); #endif // GUARD_WILDMONINFO_H