Files
icarus/include/type/SongChanged.h
T
2019-11-17 13:33:58 -05:00

15 lines
182 B
C++

#ifndef SONGCHANGED_H_
#define SONGCHANGED_H_
namespace type {
enum SongChanged {
title = 0,
artist,
album,
genre,
year
};
}
#endif