mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
8 lines
296 B
VB.net
8 lines
296 B
VB.net
''' <summary>
|
|
''' <para>Indicates that there are no more inputs in the MockConsole.</para>
|
|
''' We need this while testing, because otherwise the game loop will continue forever, waiting for a nonexistent input.
|
|
''' </summary>
|
|
Public Class EndOfInputsException
|
|
Inherits Exception
|
|
End Class
|