-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbit2.h
70 lines (52 loc) · 981 Bytes
/
bit2.h
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
58
59
60
61
62
63
64
65
66
67
68
69
70
#pragma once
#ifndef BIT2_H
#define BIT2_H
#include "bit.h"
struct SLineSeg
{
CVector End;
u8 r;
u8 g;
u8 b;
};
class CGPolyLine : public CBit {
public:
unsigned char padTop[0x40-0x3C];
int field_40;
CVector field_44;
unsigned char field_50;
unsigned char field_51;
unsigned char field_52;
unsigned char field_53;
unsigned char padAfter53[0x3];
unsigned char field_57;
};
class CGLine : public CBit
{
public:
EXPORT void SetRGB1(unsigned char, unsigned char, unsigned char);
EXPORT CGLine(void);
int field_3C;
int field_40;
int field_44;
int field_48;
int field_4C;
int field_50;
int field_54;
int field_58;
};
class CPolyLine : public CBit
{
public:
EXPORT CPolyLine(i32);
EXPORT void SetSemiTransparent(void);
unsigned char topPad[4];
i32 mNumSegs;
SLineSeg* mSegs;
CVector mStart;
};
void validate_CGPolyLine(void);
void validate_CPolyLine(void);
void validate_CGLine(void);
void validate_SLineSeg(void);
#endif