Prog3B_Projekt/includes/gamestate.h
2025-12-08 18:20:49 +01:00

17 lines
421 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// Created by Anke Bidlingmaier on 08.12.25.
//
#pragma once
#ifndef PROG3B_GAMESTATE_H
#define PROG3B_GAMESTATE_H
enum class GameState
{
Idle, // kein Würfel offen, Eingabe erlaubt
OneFlipped, // ein Würfel offen
CheckingMatch, // zwei Würfel vollständig aufgeklappt, Vergleich läuft
LockInput // Würfel drehen gerade Eingabe kurz blockiert
};
#endif //PROG3B_GAMESTATE_H