You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
205 B
18 lines
205 B
#ifndef ENUMS_H
|
|
#define ENUMS_H
|
|
|
|
// typedeffed enum
|
|
typedef enum _keys {
|
|
PIANO,
|
|
RHODES,
|
|
HAMMOND
|
|
} numbers;
|
|
|
|
// untypedeffed enum
|
|
enum _drums {
|
|
KICK,
|
|
SNARE,
|
|
TOM
|
|
};
|
|
|
|
#endif //ENUMS_H
|
|
|