OpenGothic
Open source reimplementation of Gothic I and II
Loading...
Searching...
No Matches
segment.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4#include "riff.h"
5#include "track.h"
6
7namespace Dx8 {
8
9class Segment final {
10 public:
11 Segment()=default;
12 Segment(Riff& input);
13
14 std::vector<Track> track;
15
16 private:
17 void implReadList(Riff &ch);
18 };
19
20}
Segment()=default
std::vector< Track > track
Definition segment.h:14
Definition band.h:10