mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-04 00:57:13 -08:00
Add reign initizalization
This commit is contained in:
@@ -7,9 +7,17 @@ internal static class Resource
|
||||
{
|
||||
public static Stream Title => GetStream();
|
||||
|
||||
public static string Instructions_Prompt => GetString();
|
||||
public static string Instructions_Text(int years) => string.Format(GetString(), years);
|
||||
public static string InstructionsPrompt => GetString();
|
||||
public static string InstructionsText(int years) => string.Format(GetString(), years);
|
||||
|
||||
public static string SavedYearsPrompt => GetString();
|
||||
public static string SavedYearsError(int years) => string.Format(GetString(), years);
|
||||
public static string SavedTreasuryPrompt => GetString();
|
||||
public static string SavedCountrymenPrompt => GetString();
|
||||
public static string SavedWorkersPrompt => GetString();
|
||||
public static string SavedLandPrompt => GetString();
|
||||
public static string SavedLandError => GetString();
|
||||
|
||||
internal static class Formats
|
||||
{
|
||||
public static string Player => GetString();
|
||||
|
||||
1
53_King/csharp/Resources/SavedCountrymenPrompt.txt
Normal file
1
53_King/csharp/Resources/SavedCountrymenPrompt.txt
Normal file
@@ -0,0 +1 @@
|
||||
How many countrymen
|
||||
2
53_King/csharp/Resources/SavedLandError.txt
Normal file
2
53_King/csharp/Resources/SavedLandError.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
Come on, you started with 1000 sq. miles of farm land
|
||||
and 10,000 sq. miles of forest land
|
||||
1
53_King/csharp/Resources/SavedLandPrompt.txt
Normal file
1
53_King/csharp/Resources/SavedLandPrompt.txt
Normal file
@@ -0,0 +1 @@
|
||||
How many square miles of land
|
||||
1
53_King/csharp/Resources/SavedTreasuryPrompt.txt
Normal file
1
53_King/csharp/Resources/SavedTreasuryPrompt.txt
Normal file
@@ -0,0 +1 @@
|
||||
How much did you have in the treasury
|
||||
1
53_King/csharp/Resources/SavedWorkersPrompt.txt
Normal file
1
53_King/csharp/Resources/SavedWorkersPrompt.txt
Normal file
@@ -0,0 +1 @@
|
||||
How many workers
|
||||
1
53_King/csharp/Resources/SavedYearsError.txt
Normal file
1
53_King/csharp/Resources/SavedYearsError.txt
Normal file
@@ -0,0 +1 @@
|
||||
Come on, your term in office is only {0} years.
|
||||
1
53_King/csharp/Resources/SavedYearsPrompt.txt
Normal file
1
53_King/csharp/Resources/SavedYearsPrompt.txt
Normal file
@@ -0,0 +1 @@
|
||||
How many years had you been in office when interrupted
|
||||
Reference in New Issue
Block a user