You are on page 1of 3

using System.

Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SocialPlatforms.Impl;
using UnityEngine.UI;
using UnityEngine.SceneManagement;

public class GameControllerIntro : MonoBehaviour


{
//Game Buttons
//Game Buttons - Gender
public GameObject maleButton;
public GameObject femaleButton;
public GameObject otherGenderButton;

//Game Buttons - Race/Nationality


public GameObject europeanDecentButton;
public GameObject africanDecentButton;
public GameObject nativeAmericanDecentButton;
public GameObject hispanicDecentButton;
public GameObject asianDecentButton;
public GameObject otherDecentButton;

//Game Buttons - Education


public GameObject noDegreeButton;
public GameObject hsDiplomaButton;
public GameObject bachelorsDegreeButton;
public GameObject mastersDegreeButton;
public GameObject phdDegreeButton;

//Game Buttons - Employment


public GameObject cashierButton;
public GameObject fryCookButton;
public GameObject waiterButton;
public GameObject teacherButton;
public GameObject callCenterCustomerServiceButton;
public GameObject callCenterLicensedSalesButton;
public GameObject programmerButton;
public GameObject doctorButton;

// Game Buttons - Housing


public GameObject crappyApartmentButton;
public GameObject basicApartmentButton;
public GameObject luxuryApartmentButton;
public GameObject basicHouseButton;
public GameObject livingWithParentsButton;

//Game Buttons - Transportation


public GameObject usedCarButton;
public GameObject newCarButton;
public GameObject motorcycleButton;
public GameObject busButton;
public GameObject trainButton;

//Game Screens
//Game Screens - Welcome
public GameObject welcomeScreen;

//Game Screens - Genders


public GameObject genderScreen;
public GameObject maleScreen;
public GameObject femaleScreen;
public GameObject otherGenderScreen;

//Game Screens - Race


public GameObject raceScreen;
public GameObject europeanDescentScreen;
public GameObject africanDescentScreen;
public GameObject nativeAmericanDescentScreen;
public GameObject hispanicDescentScreen;
public GameObject asianDescentScreen;
public GameObject otherDescentScreen;

//Game Screens - Educations


public GameObject educationScreen;
public GameObject educationScreenNoDegree;
public GameObject educationScreenHSDiploma;
public GameObject educationScreenBachelorsDegree;
public GameOnject educationScreenMastersDegree;
public GameObject educationScreenPHDDegree;

//Game Screens - Employment


public GameObject jobScreen;
public GameObject cashierScreen;
public GameObject fryCookScreen;
public GameObject waiterScreen;
public GameObject teacherScreen;
public GameObject callCenterCustomerServiceScreen;
public GameObject callCenterLicensedSalesScreen;
public GameObject programmerScreen;
public GameObject doctorScreen;

//Game Screens - Housing


public GameObject housingScreen;
public GameObject crappyApartmentScreen;;
public GameObject basicApartmentScreen;
public GameObject luxuryApartmentScreen;
public GameObject ownHouseScreen;
public GameObject livingWithparentsScreen

//Game Screens - Transportation


public GameObject transportationScreen;
public GameObject usedCarScreen;
public GameObject newCarScreen;
public GameObject motorcycleScreen;
public GameObject busScreen;
public GameObject trainScreen;

//Game Screens - Summary


public GameObject summaryScreen;

You might also like