mirror of
https://gitlab.com/square-game-liberation-front/F.E.I.S.git
synced 2025-03-01 07:50:25 +01:00
22 lines
452 B
C++
22 lines
452 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "special_numeric_types.hpp"
|
||
|
|
||
|
namespace better {
|
||
|
struct PreviewLoop {
|
||
|
Decimal start = 0;
|
||
|
Decimal duration = 0;
|
||
|
};
|
||
|
|
||
|
struct Metadata {
|
||
|
std::string title = "";
|
||
|
std::string artist = "";
|
||
|
std::string audio = "";
|
||
|
std::string jacket = "";
|
||
|
PreviewLoop preview_loop;
|
||
|
std::string preview_file = "";
|
||
|
bool use_preview_file = false;
|
||
|
};
|
||
|
}
|