chore: renamed utils to Utils

This commit is contained in:
Kieran Kihn
2025-11-16 11:32:08 +08:00
parent f28af1978d
commit f4f2691c04
3 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
* @author Yuzhe Guo * @author Yuzhe Guo
* @date 2025.11.15 * @date 2025.11.15
*/ */
#include "utils.h" #include "Utils.h"
namespace UNO::COMMON { namespace UNO::COMMON {
Random::Random() : rd_(), gen_(rd_()) {} Random::Random() : rd_(), gen_(rd_()) {}

View File

@@ -8,7 +8,7 @@
#include <algorithm> #include <algorithm>
#include <random> #include <random>
#include "../common/utils.h" #include "../common/Utils.h"
namespace UNO::GAME { namespace UNO::GAME {
CardTile::CardTile() = default; CardTile::CardTile() = default;