Пример #1
0
    override public void LoadNewLevel(int levelNo)
    {
        GameCreation.ResetBoard();

        if (GetLevelFromServer)
        {
            LevelSpecificationRequester.Get(this, levelNo, OnLevelLoaded);
        }
        else
        {
            OnLevelLoaded(LevelSpecification.LoadDebug());
        }
    }
Пример #2
0
 void Start()
 {
     LevelSpecificationRequester.Get(this, 1, OnLevelSpecificationRetrieved, OnLevelSpecificationFail);
 }
Пример #3
0
 virtual public void LoadNewLevel(int levelNo)
 {
     LevelSpecificationRequester.Get(this, levelNo, OnLevelLoaded, OnLevelSpecificationFail);
 }