1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
int main()
{
Player player("Player1", //Players name
200); //Players money
Game game(true); //Is the first time the game has been started
Pet pet("PetName", //Pets Name
"PetSpecies", //Pets Species
100, //Pets health
0, //Pets thirst level
100, //Pets stamina
0.8, //Pets age; 0 = years 8 = weeks
100, //Pets happiness
0, //Pet hunger
"000", //Players pet ID number
true, //Pet is happy
false, //Pet is sad
false, //Pet is angry
false, //Pet is tired
false, //Pet is hungry
false, //Pet is sleeping
false, //Pet is thirsty
false, //Pet is dead
false, //Pet is a dog
false, //Pet is a cat
false, //Pet is a mouse
false, //Pet is a hamster
false, //Pet is a parrot
false, //Pet is a turtle
false, //Pet is a goldfish
false, //Pet is a monkey
false, //Pet is male
false); //Pet is female
NewGameSetup(player, game, pet);
return 0;
}
|