Skip to content

Commit

Permalink
reformated spacing of hex dictionary to just look nicer and use less …
Browse files Browse the repository at this point in the history
…lines of code
  • Loading branch information
sh4d0w4RCH3R415 committed Sep 29, 2024
1 parent d7fbd88 commit b74e50c
Showing 1 changed file with 16 additions and 32 deletions.
48 changes: 16 additions & 32 deletions NovaUI/Helpers/LibMain/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,41 +19,25 @@ public static class Constants
{
{ false, new Dictionary<int, string>
{
{ 0, "0" },
{ 1, "1" },
{ 2, "2" },
{ 3, "3" },
{ 4, "4" },
{ 5, "5" },
{ 6, "6" },
{ 7, "7" },
{ 8, "8" },
{ 9, "9" },
{ 10, "a" },
{ 11, "b" },
{ 12, "c" },
{ 13, "d" },
{ 14, "e" },
{ 15, "f" }
{ 0, "0" }, { 1, "1" },
{ 2, "2" }, { 3, "3" },
{ 4, "4" }, { 5, "5" },
{ 6, "6" }, { 7, "7" },
{ 8, "8" }, { 9, "9" },
{ 10, "a" }, { 11, "b" },
{ 12, "c" }, { 13, "d" },
{ 14, "e" }, { 15, "f" }
} },
{ true, new Dictionary<int, string>
{
{ 0, "0" },
{ 1, "1" },
{ 2, "2" },
{ 3, "3" },
{ 4, "4" },
{ 5, "5" },
{ 6, "6" },
{ 7, "7" },
{ 8, "8" },
{ 9, "9" },
{ 10, "A" },
{ 11, "B" },
{ 12, "C" },
{ 13, "D" },
{ 14, "E" },
{ 15, "F" }
{ 0, "0" }, { 1, "1" },
{ 2, "2" }, { 3, "3" },
{ 4, "4" }, { 5, "5" },
{ 6, "6" }, { 7, "7" },
{ 8, "8" }, { 9, "9" },
{ 10, "A" }, { 11, "B" },
{ 12, "C" }, { 13, "D" },
{ 14, "E" }, { 15, "F" }
} }
};
}
Expand Down

0 comments on commit b74e50c

Please sign in to comment.