Files
thepool/source/config.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

33 lines
751 B
C++

#pragma once
namespace config
{
#define SOUND_ALL 0
#define SOUND_BASIC 1
#define SOUND_NONE 2
#define KEY_UP 0
#define KEY_DOWN 1
#define KEY_LEFT 2
#define KEY_RIGHT 3
#define KEY_JUMP 4
#define KEY_PICK 5
#define KEY_MENU 6
void setMusic(const bool value);
void toggleMusic();
const bool isMusicEnabled();
void setSound(const int value);
void toggleSound();
const int getSoundMode();
void defineKey(const int which, const int key);
const int getKey(const int which);
void definePadBtn(const int which, const int btn);
const int getPadBtn(const int which);
void setProgoloDesbloquejat();
const bool isProgoloDesbloquejat();
}