-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmod.rs
More file actions
226 lines (226 loc) · 5.29 KB
/
mod.rs
File metadata and controls
226 lines (226 loc) · 5.29 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
mod aerial_goal_score_mutator;
pub use aerial_goal_score_mutator::*;
mod air_state;
pub use air_state::*;
mod assist_goal_score_mutator;
pub use assist_goal_score_mutator::*;
mod audio_mutator;
pub use audio_mutator::*;
mod ball_anchor;
pub use ball_anchor::*;
mod ball_bounciness_mutator;
pub use ball_bounciness_mutator::*;
mod ball_gravity_mutator;
pub use ball_gravity_mutator::*;
mod ball_info;
pub use ball_info::*;
mod ball_max_speed_mutator;
pub use ball_max_speed_mutator::*;
mod ball_prediction;
pub use ball_prediction::*;
mod ball_size_mutator;
pub use ball_size_mutator::*;
mod ball_type_mutator;
pub use ball_type_mutator::*;
mod ball_weight_mutator;
pub use ball_weight_mutator::*;
mod boost_amount_mutator;
pub use boost_amount_mutator::*;
mod boost_pad;
pub use boost_pad::*;
mod boost_pad_state;
pub use boost_pad_state::*;
mod boost_strength_mutator;
pub use boost_strength_mutator::*;
mod box_shape;
pub use box_shape::*;
mod car_anchor;
pub use car_anchor::*;
mod collision_shape;
pub use collision_shape::*;
mod color;
pub use color::*;
mod connection_settings;
pub use connection_settings::*;
mod console_command;
pub use console_command::*;
mod controllable_info;
pub use controllable_info::*;
mod controllable_team_info;
pub use controllable_team_info::*;
mod controller_state;
pub use controller_state::*;
mod core_message;
pub use core_message::*;
mod core_packet;
pub use core_packet::*;
mod custom_bot;
pub use custom_bot::*;
mod cylinder_shape;
pub use cylinder_shape::*;
mod debug_rendering;
pub use debug_rendering::*;
mod demolish_mutator;
pub use demolish_mutator::*;
mod demolish_score_mutator;
pub use demolish_score_mutator::*;
mod desired_ball_state;
pub use desired_ball_state::*;
mod desired_car_state;
pub use desired_car_state::*;
mod desired_game_state;
pub use desired_game_state::*;
mod desired_match_info;
pub use desired_match_info::*;
mod desired_physics;
pub use desired_physics::*;
mod disconnect_signal;
pub use disconnect_signal::*;
mod dodge_timer_mutator;
pub use dodge_timer_mutator::*;
mod existing_match_behavior;
pub use existing_match_behavior::*;
mod field_info;
pub use field_info::*;
mod game_event_mutator;
pub use game_event_mutator::*;
mod game_mode;
pub use game_mode::*;
mod game_packet;
pub use game_packet::*;
mod game_speed_mutator;
pub use game_speed_mutator::*;
mod goal_info;
pub use goal_info::*;
mod gravity_mutator;
pub use gravity_mutator::*;
mod human;
pub use human::*;
mod init_complete;
pub use init_complete::*;
mod input_restriction_mutator;
pub use input_restriction_mutator::*;
mod interface_message;
pub use interface_message::*;
mod interface_packet;
pub use interface_packet::*;
mod jump_mutator;
pub use jump_mutator::*;
mod launcher;
pub use launcher::*;
mod line3_d;
pub use line3_d::*;
mod loadout_paint;
pub use loadout_paint::*;
mod match_comm;
pub use match_comm::*;
mod match_configuration;
pub use match_configuration::*;
mod match_info;
pub use match_info::*;
mod match_length_mutator;
pub use match_length_mutator::*;
mod match_phase;
pub use match_phase::*;
mod max_score_mutator;
pub use max_score_mutator::*;
mod max_time_mutator;
pub use max_time_mutator::*;
mod multi_ball_mutator;
pub use multi_ball_mutator::*;
mod mutator_settings;
pub use mutator_settings::*;
mod normal_goal_score_mutator;
pub use normal_goal_score_mutator::*;
mod overtime_mutator;
pub use overtime_mutator::*;
mod physics;
pub use physics::*;
mod ping_request;
pub use ping_request::*;
mod ping_response;
pub use ping_response::*;
mod player_class;
pub use player_class::*;
mod player_configuration;
pub use player_configuration::*;
mod player_info;
pub use player_info::*;
mod player_input;
pub use player_input::*;
mod player_loadout;
pub use player_loadout::*;
mod poly_line3_d;
pub use poly_line3_d::*;
mod possession_score_mutator;
pub use possession_score_mutator::*;
mod prediction_slice;
pub use prediction_slice::*;
mod psyonix_bot;
pub use psyonix_bot::*;
mod psyonix_skill;
pub use psyonix_skill::*;
mod rect2_d;
pub use rect2_d::*;
mod rect3_d;
pub use rect3_d::*;
mod relative_anchor;
pub use relative_anchor::*;
mod remove_render_group;
pub use remove_render_group::*;
mod render_anchor;
pub use render_anchor::*;
mod render_group;
pub use render_group::*;
mod render_message;
pub use render_message::*;
mod render_type;
pub use render_type::*;
mod rendering_status;
pub use rendering_status::*;
mod respawn_time_mutator;
pub use respawn_time_mutator::*;
mod rotator;
pub use rotator::*;
mod rotator_partial;
pub use rotator_partial::*;
mod rumble_mutator;
pub use rumble_mutator::*;
mod score_info;
pub use score_info::*;
mod scoring_rule_mutator;
pub use scoring_rule_mutator::*;
mod script_configuration;
pub use script_configuration::*;
mod series_length_mutator;
pub use series_length_mutator::*;
mod set_loadout;
pub use set_loadout::*;
mod sphere_shape;
pub use sphere_shape::*;
mod stale_ball_mutator;
pub use stale_ball_mutator::*;
mod start_command;
pub use start_command::*;
mod stop_command;
pub use stop_command::*;
mod string2_d;
pub use string2_d::*;
mod string3_d;
pub use string3_d::*;
mod team_info;
pub use team_info::*;
mod territory_mutator;
pub use territory_mutator::*;
mod text_h_align;
pub use text_h_align::*;
mod text_v_align;
pub use text_v_align::*;
mod touch;
pub use touch::*;
mod vector2;
pub use vector2::*;
mod vector3;
pub use vector3::*;
mod vector3_partial;
pub use vector3_partial::*;