diff --git a/MatrixBadge/MatrixBadgeSketch/src/Badge.cpp b/MatrixBadge/MatrixBadgeSketch/src/Badge.cpp index 5379328..71db428 100644 --- a/MatrixBadge/MatrixBadgeSketch/src/Badge.cpp +++ b/MatrixBadge/MatrixBadgeSketch/src/Badge.cpp @@ -33,11 +33,13 @@ Badge::Badge(const Badge ©) { * Sets this Badge's ID value */ void Badge::Set_ID(int p_ID) { m_id = p_ID; } + /** * Sets this Badge's owners selection of the PILL color, default is NONE if it * hasn't been selected yet. */ void Badge::Set_PillChoice(PillChoice p_choice) { m_choice = p_choice; } + /** * Sets the PILL color selection of another badge (RED/BLUE) if it has * been discovered, default is NONE if it hasn't been set yet. @@ -52,11 +54,13 @@ void Badge::Set_FreeMind(int p_ID, PillChoice p_choice) { * Returns this Badge's ID value */ int Badge::Get_ID() { return m_id; } + /** * Returns this Badge's owners selection of the PILL color, or none if it * hasn't been selected yet. */ PillChoice Badge::Get_PillChoice() { return m_choice; } + /** * Returns the PILL color selection of another badge (RED/BLUE) if it has * been discovered, or NONE if it hasn't been discovered yet. diff --git a/MatrixBadge/MatrixBadgeSketch/src/Badge.h b/MatrixBadge/MatrixBadgeSketch/src/Badge.h index 4f3b4fa..c75f7ba 100644 --- a/MatrixBadge/MatrixBadgeSketch/src/Badge.h +++ b/MatrixBadge/MatrixBadgeSketch/src/Badge.h @@ -23,7 +23,7 @@ typedef enum PILL_CHOICE { CHOICE_BLUE = 2 } PillChoice; -// Badge class - for reprsenting and storing this badge +// Badge class - for representing and storing this badge class Badge {