File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
includes/RhythmGameUtilities/Enums Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 5
5
namespace RhythmGameUtilities
6
6
{
7
7
8
- enum Difficulty
8
+ typedef enum Difficulty
9
9
{
10
10
11
11
// Easy Difficulty
@@ -20,7 +20,7 @@ enum Difficulty
20
20
// Expert Difficulty
21
21
Expert
22
22
23
- };
23
+ } DifficultyType ;
24
24
25
25
std::string ToString (Difficulty difficulty)
26
26
{
Original file line number Diff line number Diff line change 5
5
namespace RhythmGameUtilities
6
6
{
7
7
8
- enum NamedSection
8
+ typedef enum NamedSection
9
9
{
10
10
// / Song information
11
11
Song,
@@ -15,7 +15,7 @@ enum NamedSection
15
15
16
16
// / Track events
17
17
Events
18
- };
18
+ } NamedSectionType ;
19
19
20
20
std::string ToString (NamedSection namedSection)
21
21
{
Original file line number Diff line number Diff line change 5
5
namespace RhythmGameUtilities
6
6
{
7
7
8
- enum TypeCode
8
+ typedef enum TypeCode
9
9
{
10
10
11
11
// / BPM Marker
@@ -20,7 +20,7 @@ enum TypeCode
20
20
// / Event Marker
21
21
Event
22
22
23
- };
23
+ } TypeCodeType ;
24
24
25
25
std::string ToString (TypeCode typeCode)
26
26
{
You can’t perform that action at this time.
0 commit comments