Skip to content

Commit

Permalink
chore: add issue-related TODO notes
Browse files Browse the repository at this point in the history
Data-driven metadata
#17

 PascalCase Conversion
 #18
  • Loading branch information
BinToss committed Dec 13, 2021
1 parent 6c5701e commit 55ae726
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ struct char32 {
char str[32];
};

/// TODO: data-driven map objects. See HaloSPV3/HCE.DRP#17
struct maps {
const char *mapfile_name;
const char *map_name;
Expand Down Expand Up @@ -42,13 +43,15 @@ const maps SP_MAPS[] = {
{ "spv3_engine_elite", "Engine Room (Covenant/Flood)" },
};

/// TODO: a conversion to PascalCase would work instead. Multi-Word strings be damned. See HaloSPV3/HCE.DRP#18
const char *DIFFICULTIES[] = {
"Noble",
"Normal",
"Heroic",
"Legendary"
};

/// TODO: data-driven map objects. See HaloSPV3/HCE.DRP#17
const char *Difficulties[] = {
"noble",
"normal",
Expand Down

0 comments on commit 55ae726

Please sign in to comment.