public SavedScatteringPieces <D> SavedData()
        {
            SavedScatteringPieces <D> output = new SavedScatteringPieces <D>();

            output.HasDrawn      = _mVarHasDrawn;
            output.ClearedOut    = _clearedOut;
            output.RemainingList = RemainingList.ToObservableDeckDict();
            return(output);
        }
Ejemplo n.º 2
0
        public DeckObservableDict <D> FlipCardList() // will need the actual CardList.CardList
        {
            DeckObservableDict <D> tempList = _objectList.ToObservableDeckDict();

            tempList.Reverse();
            tempList.Add(CurrentCard); //i think
            ClearCards();
            return(tempList);
        }
Ejemplo n.º 3
0
 public DeckObservableDict <D> DeckList() // try this way
 {
     _objectList.ForEach(thisO => thisO.Visible = true);
     return(_objectList.ToObservableDeckDict());
 }