-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.h
More file actions
executable file
·57 lines (45 loc) · 810 Bytes
/
Copy pathtypes.h
File metadata and controls
executable file
·57 lines (45 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef TYPES_H
#define TYPES_H
#include <vector>
#include <QString>
class Subtitle {
public:
QString Text;
int Position;
bool isEucJP;
};
struct cLine {
int localisation;
int timestart;
int timeend;
bool localelinked;
};
struct gLine {
int localisation; //that's why you shoulndt use your other codes for a base to others programs
int unknown;
bool localelinked;
int owner;
};
class CTable {
public:
int Position;
int EndPosition;
int Language;
std::vector<cLine> Subtitles;
};
class GTable {
public:
int Position;
int EndPosition;
int Language;
std::vector<gLine> Subtitles;
};
struct Patch {
int Position;
int Difference;
};
struct Replace {
QString Character;
QString Replacement;
};
#endif // TYPES_H