- create I18n class for translations - create TextDisplay class to draw on console, and to initialize and reset console configuration - create stub for future command-line option handling
7 lines
182 B
C#
7 lines
182 B
C#
namespace Game {
|
|
public struct CommandLineOptions {
|
|
public static CommandLineOptions Parse(string[] args) {
|
|
return new CommandLineOptions();
|
|
}
|
|
}
|
|
} |