Skip to content

Commit

Permalink
Merge pull request #612 from mbbsemu/version-cli-argument
Browse files Browse the repository at this point in the history
Add -V CLI argument for Version Output
  • Loading branch information
paladine authored Dec 28, 2023
2 parents 22d11c3 + 7feb4ae commit 808a227
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MBBSEmu/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,9 @@ private void Run(string[] args)

break;
}
case "-V":
Console.WriteLine($"Version: {new ResourceManager().GetString("MBBSEmu.Assets.version.txt")}");
return;
default:
Console.WriteLine($"Unknown Command Line Argument: {args[i]}");
return;
Expand Down

0 comments on commit 808a227

Please sign in to comment.