Files
thepool/source/m_game.h
Raimon Zamora fa97ea79e8 - [NEW] Anbernics en el lloc i ja se poden recollir
- [CHG] Canviats uns pixels en les portes
- [NEW] Sequencia de final de joc acabada
- [NEW] Al pillar un booster fa sorollet
- Treballant en el prólogo
2024-10-07 13:35:01 +02:00

31 lines
752 B
C++

#pragma once
#include <vector>
#include <string>
namespace modules
{
namespace game
{
#define GAME_NONE -1
#define GAME_MENU 0
#define GAME_DEAD 1
#define GAME_EDITOR_MAP 2
#define GAME_EDITOR_TEMPLATES 3
#define GAME_EDITOR_COLORS 4
#define GAME_EDITOR_BITMAP_FILE 5
#define GAME_EDITOR_BITMAP_POS 6
#define GAME_EDITOR_BITMAP_SIZE 7
#define GAME_END 8
enum sections { SECTION_GENERAL, SECTION_ROOM, SECTION_ACTOR };
void init();
int loop();
void setSection(int value);
const int getSection();
std::vector<std::string> getGifs();
}
}