process all the puzzles, not just the one

This commit is contained in:
Tim Young 2017-08-17 10:40:45 -05:00
parent 5dc89ffe37
commit d1828aa0c9
1 changed files with 5 additions and 0 deletions

View File

@ -2153,5 +2153,10 @@ namespace EduNetworkBuilder
{
InvisibleNetwork = null;
}
public bool ProcessingInvisibleNet()
{
if(InvisibleNetwork == null) return false;
return true;
}
}
}