OpenGothic
Open source reimplementation of Gothic I and II
Loading...
Searching...
No Matches
info.h
Go to the documentation of this file.
1#pragma once
2
3#include "riff.h"
4
5namespace Dx8 {
6
7class Info final {
8 public:
9 Info()=default;
10 Info(Dx8::Riff &input);
11
12 std::string inam;
13
14 private:
15 void implRead(Dx8::Riff &input);
16 };
17
18class Unfo final {
19 public:
20 Unfo()=default;
21 Unfo(Dx8::Riff &input);
22
23 std::u16string unam;
24
25 private:
26 void implRead(Dx8::Riff &input);
27 };
28
29}
Info()=default
std::string inam
Definition info.h:12
Unfo()=default
std::u16string unam
Definition info.h:23
Definition band.h:10