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

14 lines
162 B
C++

#ifndef PATHTYPE_H_
#define PATHTYPE_H_
namespace type {
enum PathType {
music = 0,
archive,
temp,
coverArt
};
}
#endif