2023-06-10 14:48:16 +02:00
|
|
|
#ifndef HOLESOME_LEVELS_HPP
|
|
|
|
#define HOLESOME_LEVELS_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
#include "game/level/level_config.hpp"
|
|
|
|
|
|
|
|
#define INITIAL_LEVEL "default"
|
|
|
|
|
|
|
|
std::map<std::string, LevelConfig> const LEVELS = {
|
2023-06-11 15:54:05 +02:00
|
|
|
{"default", LevelConfig("Default", {25, 25}, {{0, 0}})}
|
2023-06-10 14:48:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //HOLESOME_LEVELS_HPP
|