You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, main loop does:
c = NextCommand()
c.Exec()
In a command pattern like fashion. There aren't any other uses for a command, so it makes sense to just delegate command execution to the NextCommand() procedure.