vulkan/include/poem1.h
2026-05-30 20:12:53 -05:00

19 lines
345 B
C++

namespace poem1 {
struct line {
int start;
int length;
};
struct timestamp {
double time;
int wordIndex;
};
extern char const * const words[];
extern int const words_length;
extern line const lines[];
extern int const lines_length;
extern timestamp const timestamps[];
extern int const timestamps_length;
}