Display special icon when moving bee cursor over gray wrap area
This is done as a reminder to remind the player the bee will attempt to fly through the edge first when placing the target in one of the two gray areas.
#ifndef GAMECONFIG_H
#define GAMECONFIG_H
#include <QList>
#include <QVector>
#include "team.h"
class GameConfig {
public:
explicit GameConfig();
const char** argv() const;
int argc() const;
const QList<QByteArray> config() const;
void clear();
void cmdSeed(const QByteArray& seed);
void cmdTheme(const QByteArray& theme);
void cmdMapgen(int mapgen);
void cmdTeam(const Team& team);
private:
mutable QVector<const char*> m_argv;
QList<QByteArray> m_arguments;
QList<QByteArray> m_cfg;
QList<Team> m_teams;
void cfgAppend(const QByteArray& cmd);
};
#endif // GAMECONFIG_H