mis en place la PR de simon sur les couleurs

This commit is contained in:
2025-02-28 18:42:04 +01:00
parent f0f391ade6
commit 26f501f7e8
29 changed files with 713 additions and 665 deletions

View File

@@ -17,32 +17,35 @@ class Player {
Player();
/**
* Try setting DAS to the desired value, and returns wheter it is possible
* Try setting DAS to the desired value
* @return If it is possible
*/
bool setDAS(int DAS);
/**
* Try setting ARR to the desired value, and returns wheter it is possible
* Try setting ARR to the desired value
* @return If it is possible
*/
bool setARR(int ARR);
/**
* Try setting SDR to the desired value, and returns wheter it is possible
* Try setting SDR to the desired value
* @return If it is possible
*/
bool setSDR(int SDR);
/**
* Returns DAS value
* @return DAS value
*/
int getDAS();
/**
* Returns ARR value
* @return ARR value
*/
int getARR();
/**
* Returns SDR value
* @return SDR value
*/
int getSDR();
};