#ifndef GUARD_WILDMONINFO_H #define GUARD_WILDMONINFO_H #include struct WildPokemon { int minLevel = 5; int maxLevel = 5; QString species = "SPECIES_NONE"; }; 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