Update stable version 24/05/2025 #2

Merged
rafa merged 29 commits from dev into main 2025-05-24 20:00:44 +02:00
Showing only changes of commit 1518fbf51a - Show all commits

View File

@ -29,6 +29,14 @@ class CarSpotController {
this->occupied_spots++; this->occupied_spots++;
} }
void increment_total_spots () {
this->total_spots++;
}
void decrement_total_spots () {
this->total_spots--;
}
void decrement_occupied_spots () { void decrement_occupied_spots () {
this->occupied_spots--; this->occupied_spots--;
} }