mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-27 05:03:27 -08:00
12 lines
250 B
C#
12 lines
250 B
C#
namespace Poetry;
|
|
|
|
internal class Context
|
|
{
|
|
public int I { get; set; }
|
|
public int J { get; set; }
|
|
public int K { get; set; }
|
|
public int U { get; set; }
|
|
public bool SkipComma { get; set; }
|
|
public bool UseGroup2 { get; set; }
|
|
}
|