fix(game): init Deck in construct function by default

This commit is contained in:
Kieran Kihn
2025-11-16 20:18:19 +08:00
parent dbaf3c9899
commit c8c779d711

View File

@@ -73,7 +73,10 @@ namespace UNO::GAME {
return this->front();
}
Deck::Deck() = default;
Deck::Deck()
{
this->init();
}
void Deck::init()
{