Skip to content

Commit

Permalink
Add -V CLI argument for Version Output
Browse files Browse the repository at this point in the history
  • Loading branch information
enusbaum committed Dec 24, 2023
1 parent 22d11c3 commit 7feb4ae
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 7feb4ae

Please sign in to comment.