Skip to content

Commit 0e52d16

Browse files
committed
add comment
1 parent 300021b commit 0e52d16

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

HangmanGame/Program.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ static void Main(string[] args)
1515
{
1616

1717
#if SupportUndo
18+
// MEMENTO NOTES:
19+
// HangmanGameWithUndo == ORIGINATOR
20+
// This Main Program == CARETAKER
21+
// HangmanMemento == MEMENTO
1822
var game = new HangmanGameWithUndo();
1923
var gameHistory = new Stack<HangmanMemento>();
2024
gameHistory.Push(game.CreateSetPoint());

0 commit comments

Comments
 (0)