From b74e50c277ff2ac67eb560d0caae2b696f7efaca Mon Sep 17 00:00:00 2001 From: Lexz-08 Date: Sat, 28 Sep 2024 23:00:59 -0700 Subject: [PATCH] reformated spacing of hex dictionary to just look nicer and use less lines of code --- NovaUI/Helpers/LibMain/Constants.cs | 48 ++++++++++------------------- 1 file changed, 16 insertions(+), 32 deletions(-) diff --git a/NovaUI/Helpers/LibMain/Constants.cs b/NovaUI/Helpers/LibMain/Constants.cs index bd980e9..dcd4227 100644 --- a/NovaUI/Helpers/LibMain/Constants.cs +++ b/NovaUI/Helpers/LibMain/Constants.cs @@ -19,41 +19,25 @@ public static class Constants { { false, new Dictionary { - { 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 { - { 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" } } } }; }