public override ExtendedEventArgs process()
    {
        ResponseTutorialEventArgs args = null;

        args = new ResponseTutorialEventArgs();
        args.currentTutorial = currentTutorial;

        return args;
    }
Example #2
0
    public override ExtendedEventArgs process()
    {
        ResponseTutorialEventArgs args = null;

        args = new ResponseTutorialEventArgs();
        args.currentTutorial = currentTutorial;

        return(args);
    }
Example #3
0
    public void ResponseTutorial(ExtendedEventArgs eventArgs)
    {
        ResponseTutorialEventArgs args = eventArgs as ResponseTutorialEventArgs;

        currentTutorial      = args.currentTutorial;
        tutorialIndex        = currentTutorial;
        tutorialText         = Strings.ecosystemTutorialStrings[tutorialIndex];
        readyForNextTutorial = Strings.ecosystemTutorialStringIsNextable[tutorialIndex];
        initializeShopAll();
        objectiveCompleted    = false;
        isTutorialInitialized = true;
    }