Skip to content

Commit

Permalink
7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebe-leong authored Jun 28, 2021
1 parent 0a04d46 commit 53e81bd
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions classes.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#include <string>
#pragma once

class User {
public:
struct User {

int starterCredits = 900;
int credits = starterCredits;
Expand All @@ -12,8 +11,7 @@ class User {
std::string difficultyLvl;
};

class Jobs {
public:
struct Jobs {

std::string currentJobStatus;

Expand All @@ -31,11 +29,10 @@ class Jobs {
int chef = 200; // requires university degree in cooking
int lecturer = 300; // requires university degree in talking

int waiter = 25;
int teacher = 50; // requires university degree in teaching
int waiter = 25;
int teacher = 50; // requires university degree in teaching

class University {
public:
struct University {

int UniFee = 2000;

Expand All @@ -50,8 +47,7 @@ class Jobs {
};
};

class shopItems {
public:
struct shopItems {

std::string shopItem1 = "Quantum Computer";
std::string shopItem2 = "Teaching";
Expand All @@ -77,4 +73,3 @@ class shopItems {
bool hasAnItem = false;

};

0 comments on commit 53e81bd

Please sign in to comment.