aboutsummaryrefslogtreecommitdiff
path: root/include/MediaChapter.hpp
blob: f90493bd238e4ddab58baf59c2c36dbb2729d51e (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <string>

namespace QuickMedia {
    struct MediaChapter {
        int start_seconds = 0;
        std::string title; // newlines will be replaced by spaces
    };
}