From bbe334b6c9249fea57dee53a0804693dab46f03c Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Fri, 2 Mar 2018 18:01:31 -0500 Subject: Added overlay shadow, achievement title wrapping, and date The canonical title font is Roboto Bold and the date font is Roboto Medium. --- database.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'database.h') diff --git a/database.h b/database.h index a616318..9dcb118 100644 --- a/database.h +++ b/database.h @@ -12,6 +12,11 @@ struct achievement { std::string color; }; +struct did { + int profileId; + std::string date; +}; + class database { public: @@ -43,6 +48,8 @@ public: std::string getRandomImageForGame(int gameId) const; + did getRandomDidForAchievement(int achievementId) const; + private: database() = default; -- cgit 1.4.1