-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.bas
More file actions
59 lines (54 loc) · 958 Bytes
/
types.bas
File metadata and controls
59 lines (54 loc) · 958 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
58
59
type Terrain
x as single
y as single
end type
type generic_item_proto
x as single
y as single
w as single
end type
type ball_proto
x as single
y as single
old_x as single
old_y as single
r as single 'radius
rds as single 'angle in radiants
speed as single
is_active as boolean
w as single
end type
type camera_proto
x as single
x_offset as single
y as single
y_offset as single
obj as obj_to_follow
rds as single
speed as single
end type
type player_proto
x as single
y as single
old_x as single
old_y as single
w as single
h as single
rds as single
speed as single
power as single
team as integer
is_alive as boolean
has_moved as boolean
end type
Type mouse
As Integer res, x, y, wheel, clip, old_wheel, diff_wheel
Union
buttons As Integer
Type
Left:1 As Integer
Right:1 As Integer
middle:1 As Integer
End Type
End Union
End Type