Ejemplo n.º 1
0
 public Tutorial(Tutorial other)
 {
     ID                      = other.ID;
     Message                 = other.Message;
     ShowDismissButton       = other.ShowDismissButton;
     LockBoard               = other.LockBoard;
     InteractableTools       = other.InteractableTools.ToList();
     PlaybackButtonAvailable = other.PlaybackButtonAvailable;
     HighlightSpikeBalls     = other.HighlightSpikeBalls;
     InteractableRects       = other.InteractableRects.ToList();
 }
Ejemplo n.º 2
0
        public TutorialData()
        {
            Tutorials = new List <Tutorial>();

            foreach (var id in Utility.GetEnumValues <TutorialID>())
            {
                var tutorial = new Tutorial()
                {
                    ID = id
                };
                Tutorials.Add(tutorial);
            }
        }