diff --git a/src/TextLore.sln b/src/TextLore.sln index 8175d64..f54db4e 100644 --- a/src/TextLore.sln +++ b/src/TextLore.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.8.34511.84 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextLore", "TextLore\TextLore.csproj", "{1F935415-BA18-42C8-B210-D6195F93A719}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TextLore", "TextLore\TextLore.csproj", "{1F935415-BA18-42C8-B210-D6195F93A719}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/src/TextLore/Components/Pages/Home.razor b/src/TextLore/Components/Pages/Home.razor index fb74bde..1802ce1 100644 --- a/src/TextLore/Components/Pages/Home.razor +++ b/src/TextLore/Components/Pages/Home.razor @@ -1,9 +1,8 @@ @page "/" - TextLore - + @code { @@ -11,6 +10,8 @@ HelpCommand? helpCommand; + string desctiption = "Select a game mode by using the 'play' command."; + protected override void OnInitialized() { helpCommand = new HelpCommand(commands); diff --git a/src/TextLore/Components/Shared/Console.razor b/src/TextLore/Components/Shared/Console.razor index 47143a2..64a0bc9 100644 --- a/src/TextLore/Components/Shared/Console.razor +++ b/src/TextLore/Components/Shared/Console.razor @@ -1,5 +1,4 @@ @using Microsoft.AspNetCore.Components.Forms -@using TextLore.Models