+ Kommentar in Card.js Exportieren
@ -34,4 +34,5 @@ class Card {
}
//Exportiert Modul Card
module.exports = Card;
@ -1,5 +1,7 @@
//Legt mögliche Farben fest, "NONE" sind Auswahlkarten
const CARD_COLORS = ["NONE", "BLUE", "GREEN", "RED", "YELLOW"];
//Exportiert CARD_COLORS
module.exports = {
CARD_COLORS: CARD_COLORS,