Added some comments.

This commit is contained in:
2026-02-17 10:27:16 -08:00
parent c398857923
commit 6eeff22588

2
main.c
View File

@@ -112,6 +112,7 @@ typedef enum activity_type {
activity_type_COUNT activity_type_COUNT
} activity_type; } activity_type;
// TODO: Rename to something shorter, maybe ommit the "repreresentation."
char *activity_type_string_representation[activity_type_COUNT] = { char *activity_type_string_representation[activity_type_COUNT] = {
"Other", "Other",
"Studying", "Studying",
@@ -122,6 +123,7 @@ char *activity_type_string_representation[activity_type_COUNT] = {
"Reading" "Reading"
}; };
// TODO: Rename to something shorter, maybe ommit the "repreresentation."
Color activity_type_color_representation[activity_type_COUNT] = { Color activity_type_color_representation[activity_type_COUNT] = {
RED, RED,
GREEN, GREEN,