X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FAccount.h;h=7d550e81e7534597a6f0161a349aa1739a0fe187;hb=8afdcba610cded0e54b85069ba051268b29669a6;hp=599384cea8a8718faaf9b4a97ee16537c1403ee0;hpb=6e5fc0433956e44ba9ae92b544e51ac15c27c451;p=lugaru.git diff --git a/Source/Account.h b/Source/Account.h index 599384c..7d550e8 100644 --- a/Source/Account.h +++ b/Source/Account.h @@ -28,13 +28,19 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include #include -typedef struct { +struct CampaignProgress { float highscore; float fasttime; float score; float time; std::vector choices; -} campaign_progress_t; + CampaignProgress() { + highscore = 0; + fasttime = 0; + score = 0; + time = 0; + } +}; class Account { public: @@ -88,7 +94,7 @@ class Account { std::string name; std::string currentCampaign; - std::map campaignProgress; + std::map campaignProgress; //statics static std::vector accounts;