MediaChapter.hpp 187 B

12345678910
  1. #pragma once
  2. #include <string>
  3. namespace QuickMedia {
  4. struct MediaChapter {
  5. int start_seconds = 0;
  6. std::string title; // newlines will be replaced by spaces
  7. };
  8. }