Exemple #1
0
    // Retrieve pandemic .json file (In future expansions, allows for scenario swapping)
    Dictionary <string, Pandemic> initializePandemic()
    {
        jsonInput          pd           = new jsonInput();
        PandemicInfoReader PandemicInfo = new PandemicInfoReader();

        return(PandemicInfo.pandemicReader(pd.JsonInputPandemic()));
    }
Exemple #2
0
    Dictionary <string, Research> initializeResearch()
    {
        jsonInput          re           = new jsonInput();
        ResearchInfoReader ResearchInfo = new ResearchInfoReader();

        return(ResearchInfo.researchReader(re.JsonInputResearch()));
    }
Exemple #3
0
    // Retrieve country .json file (In future expansions, allows for scenario swapping)
    Dictionary <string, Country> initializeCountryList()
    {
        jsonInput         js          = new jsonInput();
        CountryInfoReader CountryInfo = new CountryInfoReader();

        return(CountryInfo.countryInfoReader(js.JsonInputCountry()));
    }