Skip to content

Commit

Permalink
Add todo comments
Browse files Browse the repository at this point in the history
  • Loading branch information
evgTSV authored and ForNeVeR committed Mar 9, 2024
1 parent 966c1a1 commit 0543f00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions O21.CommandLine/Arguments.fs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ module Arguments =
[<Option('o', "out", HelpText = "Directory where resources will be stored")>]
member this.outputDirectory: string = outputDirectory

[<Verb("helpFile", HelpText = "?")>] // TODO: Define help text
[<Verb("helpFile", HelpText = "?")>] // TODO[#141]: Define help text
type HelpFile(inputFilePath:string, outputDirectory:string, showHelpInfo:bool) =
inherit BaseCommand(showHelpInfo)
[<Value(0, HelpText = "?")>] // TODO: Define help text
[<Value(0, HelpText = "?")>] // TODO[#141]: Define help text
member this.inputFilePath: string = inputFilePath
[<Option('o', "out", HelpText = "?")>] // TODO: Define help text
[<Option('o', "out", HelpText = "?")>] // TODO[#141]: Define help text
member this.outputDirectory: string = outputDirectory
2 changes: 1 addition & 1 deletion O21.CommandLine/CommandLineParser.fs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module CommandLineParser =
| command ->
let mutable success = true
if (command.Value :?> BaseCommand).showHelpInfo then
reporter.ReportInfo("help info") // TODO: implement help info for command
reporter.ReportInfo("help info") // TODO[#141]: implement help info for command
else
match command.Value with
| :? StartGame as startCommand ->
Expand Down

0 comments on commit 0543f00

Please sign in to comment.