4#include <game/Card/CardRenderer.h>
5#include <game/Card/Deck.h>
6#include <game/Screens/Screen.h>
33 std::chrono::time_point<std::chrono::steady_clock> m_GameStartTimePoint;
39 static void gameplayThread();
45 void applySessionSettings();
53 void ContinueCreatingNew();
54 void Load(std::istream &is);
55 int32 GetRandomSeedFromList();
The renderer of component registry.
Definition Surface.h:28
Handles the visual representation of cards and stacks.
Definition CardRenderer.h:18
Represents a deck of cards, including all stacks.
Definition Deck.h:78
void OnSurfaceCallback(const String &id) override
Event called when any component sends callback.
Definition GameplayScreen.h:67
void Draw() override
Event called when screen is getting rerendered and this screen is currently rendered screen.
Definition GameplayScreen.cpp:246
void Build(Andromenda::Surface &surface) override
Event called when this screen is being opened.
Definition GameplayScreen.cpp:235
void Repose() override
Event called when this screen is being closed.
Definition GameplayScreen.cpp:244
Represents object that registers components .
Definition Screen.h:57
Represents a mutable sequence of characters, providing various member functions for string manipulati...
Definition String.h:16