rlbot-flatbuffers 0.14.6__cp310-abi3-win_amd64.whl → 0.14.7__cp310-abi3-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rlbot_flatbuffers/__init__.pyi +286 -3
- rlbot_flatbuffers/rlbot_flatbuffers.pyd +0 -0
- {rlbot_flatbuffers-0.14.6.dist-info → rlbot_flatbuffers-0.14.7.dist-info}/METADATA +1 -1
- rlbot_flatbuffers-0.14.7.dist-info/RECORD +8 -0
- rlbot_flatbuffers-0.14.6.dist-info/RECORD +0 -8
- {rlbot_flatbuffers-0.14.6.dist-info → rlbot_flatbuffers-0.14.7.dist-info}/WHEEL +0 -0
- {rlbot_flatbuffers-0.14.6.dist-info → rlbot_flatbuffers-0.14.7.dist-info}/licenses/LICENSE +0 -0
rlbot_flatbuffers/__init__.pyi
CHANGED
|
@@ -7,6 +7,25 @@ __version__: str
|
|
|
7
7
|
|
|
8
8
|
class InvalidFlatbuffer(ValueError): ...
|
|
9
9
|
|
|
10
|
+
class AerialGoalScoreMutator:
|
|
11
|
+
Default = AerialGoalScoreMutator(0)
|
|
12
|
+
Zero = AerialGoalScoreMutator(1)
|
|
13
|
+
Two = AerialGoalScoreMutator(2)
|
|
14
|
+
Three = AerialGoalScoreMutator(3)
|
|
15
|
+
Five = AerialGoalScoreMutator(4)
|
|
16
|
+
Ten = AerialGoalScoreMutator(5)
|
|
17
|
+
|
|
18
|
+
def __new__(cls, value: int = 0): ...
|
|
19
|
+
def __init__(self, value: int = 0):
|
|
20
|
+
"""
|
|
21
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
22
|
+
"""
|
|
23
|
+
def __int__(self) -> int: ...
|
|
24
|
+
def __eq__(self, other: AerialGoalScoreMutator) -> bool: ...
|
|
25
|
+
def __hash__(self) -> str: ...
|
|
26
|
+
def __str__(self) -> str: ...
|
|
27
|
+
def __repr__(self) -> str: ...
|
|
28
|
+
|
|
10
29
|
class AirState:
|
|
11
30
|
OnGround = AirState(0)
|
|
12
31
|
"""
|
|
@@ -46,6 +65,23 @@ class AirState:
|
|
|
46
65
|
def __str__(self) -> str: ...
|
|
47
66
|
def __repr__(self) -> str: ...
|
|
48
67
|
|
|
68
|
+
class AssistGoalScoreMutator:
|
|
69
|
+
Default = AssistGoalScoreMutator(0)
|
|
70
|
+
One = AssistGoalScoreMutator(1)
|
|
71
|
+
Two = AssistGoalScoreMutator(2)
|
|
72
|
+
Three = AssistGoalScoreMutator(3)
|
|
73
|
+
|
|
74
|
+
def __new__(cls, value: int = 0): ...
|
|
75
|
+
def __init__(self, value: int = 0):
|
|
76
|
+
"""
|
|
77
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
78
|
+
"""
|
|
79
|
+
def __int__(self) -> int: ...
|
|
80
|
+
def __eq__(self, other: AssistGoalScoreMutator) -> bool: ...
|
|
81
|
+
def __hash__(self) -> str: ...
|
|
82
|
+
def __str__(self) -> str: ...
|
|
83
|
+
def __repr__(self) -> str: ...
|
|
84
|
+
|
|
49
85
|
class AudioMutator:
|
|
50
86
|
Default = AudioMutator(0)
|
|
51
87
|
Haunted = AudioMutator(1)
|
|
@@ -116,7 +152,7 @@ class BallBouncinessMutator:
|
|
|
116
152
|
Low = BallBouncinessMutator(1)
|
|
117
153
|
High = BallBouncinessMutator(2)
|
|
118
154
|
SuperHigh = BallBouncinessMutator(3)
|
|
119
|
-
|
|
155
|
+
Lowish = BallBouncinessMutator(4)
|
|
120
156
|
|
|
121
157
|
def __new__(cls, value: int = 0): ...
|
|
122
158
|
def __init__(self, value: int = 0):
|
|
@@ -129,6 +165,23 @@ class BallBouncinessMutator:
|
|
|
129
165
|
def __str__(self) -> str: ...
|
|
130
166
|
def __repr__(self) -> str: ...
|
|
131
167
|
|
|
168
|
+
class BallGravityMutator:
|
|
169
|
+
Default = BallGravityMutator(0)
|
|
170
|
+
Low = BallGravityMutator(1)
|
|
171
|
+
High = BallGravityMutator(2)
|
|
172
|
+
SuperHigh = BallGravityMutator(3)
|
|
173
|
+
|
|
174
|
+
def __new__(cls, value: int = 0): ...
|
|
175
|
+
def __init__(self, value: int = 0):
|
|
176
|
+
"""
|
|
177
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
178
|
+
"""
|
|
179
|
+
def __int__(self) -> int: ...
|
|
180
|
+
def __eq__(self, other: BallGravityMutator) -> bool: ...
|
|
181
|
+
def __hash__(self) -> str: ...
|
|
182
|
+
def __str__(self) -> str: ...
|
|
183
|
+
def __repr__(self) -> str: ...
|
|
184
|
+
|
|
132
185
|
class BallInfo:
|
|
133
186
|
"""
|
|
134
187
|
Information about a ball.
|
|
@@ -265,6 +318,10 @@ class BallTypeMutator:
|
|
|
265
318
|
Haunted = BallTypeMutator(6)
|
|
266
319
|
Ekin = BallTypeMutator(7)
|
|
267
320
|
SpookyCube = BallTypeMutator(8)
|
|
321
|
+
Egg = BallTypeMutator(9)
|
|
322
|
+
PlayerSeeking = BallTypeMutator(10)
|
|
323
|
+
Dropshot = BallTypeMutator(11)
|
|
324
|
+
ScoreAbsorb = BallTypeMutator(12)
|
|
268
325
|
|
|
269
326
|
def __new__(cls, value: int = 0): ...
|
|
270
327
|
def __init__(self, value: int = 0):
|
|
@@ -945,6 +1002,8 @@ class DemolishMutator:
|
|
|
945
1002
|
FriendlyFire = DemolishMutator(2)
|
|
946
1003
|
OnContact = DemolishMutator(3)
|
|
947
1004
|
OnContactFF = DemolishMutator(4)
|
|
1005
|
+
OnBallContact = DemolishMutator(5)
|
|
1006
|
+
OnBallContactFF = DemolishMutator(6)
|
|
948
1007
|
|
|
949
1008
|
def __new__(cls, value: int = 0): ...
|
|
950
1009
|
def __init__(self, value: int = 0):
|
|
@@ -957,6 +1016,23 @@ class DemolishMutator:
|
|
|
957
1016
|
def __str__(self) -> str: ...
|
|
958
1017
|
def __repr__(self) -> str: ...
|
|
959
1018
|
|
|
1019
|
+
class DemolishScoreMutator:
|
|
1020
|
+
Default = DemolishScoreMutator(0)
|
|
1021
|
+
One = DemolishScoreMutator(1)
|
|
1022
|
+
Two = DemolishScoreMutator(2)
|
|
1023
|
+
Three = DemolishScoreMutator(3)
|
|
1024
|
+
|
|
1025
|
+
def __new__(cls, value: int = 0): ...
|
|
1026
|
+
def __init__(self, value: int = 0):
|
|
1027
|
+
"""
|
|
1028
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
1029
|
+
"""
|
|
1030
|
+
def __int__(self) -> int: ...
|
|
1031
|
+
def __eq__(self, other: DemolishScoreMutator) -> bool: ...
|
|
1032
|
+
def __hash__(self) -> str: ...
|
|
1033
|
+
def __str__(self) -> str: ...
|
|
1034
|
+
def __repr__(self) -> str: ...
|
|
1035
|
+
|
|
960
1036
|
class DesiredBallState:
|
|
961
1037
|
"""
|
|
962
1038
|
A ball state with nullable components.
|
|
@@ -1206,6 +1282,23 @@ class DesiredPhysics:
|
|
|
1206
1282
|
def __str__(self) -> str: ...
|
|
1207
1283
|
def __repr__(self) -> str: ...
|
|
1208
1284
|
|
|
1285
|
+
class DodgeTimerMutator:
|
|
1286
|
+
Default = DodgeTimerMutator(0)
|
|
1287
|
+
TwoSeconds = DodgeTimerMutator(1)
|
|
1288
|
+
ThreeSeconds = DodgeTimerMutator(2)
|
|
1289
|
+
Unlimited = DodgeTimerMutator(3)
|
|
1290
|
+
|
|
1291
|
+
def __new__(cls, value: int = 0): ...
|
|
1292
|
+
def __init__(self, value: int = 0):
|
|
1293
|
+
"""
|
|
1294
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
1295
|
+
"""
|
|
1296
|
+
def __int__(self) -> int: ...
|
|
1297
|
+
def __eq__(self, other: DodgeTimerMutator) -> bool: ...
|
|
1298
|
+
def __hash__(self) -> str: ...
|
|
1299
|
+
def __str__(self) -> str: ...
|
|
1300
|
+
def __repr__(self) -> str: ...
|
|
1301
|
+
|
|
1209
1302
|
class ExistingMatchBehavior:
|
|
1210
1303
|
Restart = ExistingMatchBehavior(0)
|
|
1211
1304
|
"""
|
|
@@ -1547,6 +1640,41 @@ class Human:
|
|
|
1547
1640
|
def __str__(self) -> str: ...
|
|
1548
1641
|
def __repr__(self) -> str: ...
|
|
1549
1642
|
|
|
1643
|
+
class InputRestrictionMutator:
|
|
1644
|
+
Default = InputRestrictionMutator(0)
|
|
1645
|
+
Backwards = InputRestrictionMutator(1)
|
|
1646
|
+
|
|
1647
|
+
def __new__(cls, value: int = 0): ...
|
|
1648
|
+
def __init__(self, value: int = 0):
|
|
1649
|
+
"""
|
|
1650
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
1651
|
+
"""
|
|
1652
|
+
def __int__(self) -> int: ...
|
|
1653
|
+
def __eq__(self, other: InputRestrictionMutator) -> bool: ...
|
|
1654
|
+
def __hash__(self) -> str: ...
|
|
1655
|
+
def __str__(self) -> str: ...
|
|
1656
|
+
def __repr__(self) -> str: ...
|
|
1657
|
+
|
|
1658
|
+
class JumpMutator:
|
|
1659
|
+
Default = JumpMutator(0)
|
|
1660
|
+
Grounded = JumpMutator(1)
|
|
1661
|
+
Two = JumpMutator(2)
|
|
1662
|
+
Three = JumpMutator(3)
|
|
1663
|
+
Four = JumpMutator(4)
|
|
1664
|
+
Unlimited = JumpMutator(5)
|
|
1665
|
+
NoJumps = JumpMutator(6)
|
|
1666
|
+
|
|
1667
|
+
def __new__(cls, value: int = 0): ...
|
|
1668
|
+
def __init__(self, value: int = 0):
|
|
1669
|
+
"""
|
|
1670
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
1671
|
+
"""
|
|
1672
|
+
def __int__(self) -> int: ...
|
|
1673
|
+
def __eq__(self, other: JumpMutator) -> bool: ...
|
|
1674
|
+
def __hash__(self) -> str: ...
|
|
1675
|
+
def __str__(self) -> str: ...
|
|
1676
|
+
def __repr__(self) -> str: ...
|
|
1677
|
+
|
|
1550
1678
|
class Launcher:
|
|
1551
1679
|
Steam = Launcher(0)
|
|
1552
1680
|
Epic = Launcher(1)
|
|
@@ -2076,7 +2204,17 @@ class MaxScoreMutator:
|
|
|
2076
2204
|
ThreeGoals = MaxScoreMutator(2)
|
|
2077
2205
|
FiveGoals = MaxScoreMutator(3)
|
|
2078
2206
|
SevenGoals = MaxScoreMutator(4)
|
|
2079
|
-
|
|
2207
|
+
TenGoals = MaxScoreMutator(5)
|
|
2208
|
+
TwentyGoals = MaxScoreMutator(6)
|
|
2209
|
+
ThirtyGoals = MaxScoreMutator(7)
|
|
2210
|
+
FortyGoals = MaxScoreMutator(8)
|
|
2211
|
+
FiftyGoals = MaxScoreMutator(9)
|
|
2212
|
+
SixtyGoals = MaxScoreMutator(10)
|
|
2213
|
+
SeventyGoals = MaxScoreMutator(11)
|
|
2214
|
+
EightyGoals = MaxScoreMutator(12)
|
|
2215
|
+
NinetyGoals = MaxScoreMutator(13)
|
|
2216
|
+
HundredGoals = MaxScoreMutator(14)
|
|
2217
|
+
Unlimited = MaxScoreMutator(15)
|
|
2080
2218
|
|
|
2081
2219
|
def __new__(cls, value: int = 0): ...
|
|
2082
2220
|
def __init__(self, value: int = 0):
|
|
@@ -2143,7 +2281,7 @@ class MutatorSettings:
|
|
|
2143
2281
|
"""
|
|
2144
2282
|
series_length: SeriesLengthMutator
|
|
2145
2283
|
"""
|
|
2146
|
-
The series length
|
|
2284
|
+
The series length.
|
|
2147
2285
|
"""
|
|
2148
2286
|
game_speed: GameSpeedMutator
|
|
2149
2287
|
"""
|
|
@@ -2206,6 +2344,50 @@ class MutatorSettings:
|
|
|
2206
2344
|
"""
|
|
2207
2345
|
Additional audio options for custom modes.
|
|
2208
2346
|
"""
|
|
2347
|
+
ball_gravity: BallGravityMutator
|
|
2348
|
+
"""
|
|
2349
|
+
Ball gravity.
|
|
2350
|
+
"""
|
|
2351
|
+
territory: TerritoryMutator
|
|
2352
|
+
"""
|
|
2353
|
+
Territory mutator.
|
|
2354
|
+
"""
|
|
2355
|
+
stale_ball: StaleBallMutator
|
|
2356
|
+
"""
|
|
2357
|
+
Stale ball mutator.
|
|
2358
|
+
"""
|
|
2359
|
+
jump: JumpMutator
|
|
2360
|
+
"""
|
|
2361
|
+
Jumps mutator.
|
|
2362
|
+
"""
|
|
2363
|
+
dodge_timer: DodgeTimerMutator
|
|
2364
|
+
"""
|
|
2365
|
+
Dodge timer mutator.
|
|
2366
|
+
"""
|
|
2367
|
+
possession_score: PossessionScoreMutator
|
|
2368
|
+
"""
|
|
2369
|
+
Possession score mutator.
|
|
2370
|
+
"""
|
|
2371
|
+
demolish_score: DemolishScoreMutator
|
|
2372
|
+
"""
|
|
2373
|
+
Demolish score mutator.
|
|
2374
|
+
"""
|
|
2375
|
+
normal_goal_score: NormalGoalScoreMutator
|
|
2376
|
+
"""
|
|
2377
|
+
Normal goal score mutator.
|
|
2378
|
+
"""
|
|
2379
|
+
aerial_goal_score: AerialGoalScoreMutator
|
|
2380
|
+
"""
|
|
2381
|
+
Aerial goal score mutator.
|
|
2382
|
+
"""
|
|
2383
|
+
assist_goal_score: AssistGoalScoreMutator
|
|
2384
|
+
"""
|
|
2385
|
+
Assist goal score mutator.
|
|
2386
|
+
"""
|
|
2387
|
+
input_restriction: InputRestrictionMutator
|
|
2388
|
+
"""
|
|
2389
|
+
Player input restriction mutator.
|
|
2390
|
+
"""
|
|
2209
2391
|
|
|
2210
2392
|
__match_args__ = (
|
|
2211
2393
|
"match_length",
|
|
@@ -2228,6 +2410,17 @@ class MutatorSettings:
|
|
|
2228
2410
|
"max_time",
|
|
2229
2411
|
"game_event",
|
|
2230
2412
|
"audio",
|
|
2413
|
+
"ball_gravity",
|
|
2414
|
+
"territory",
|
|
2415
|
+
"stale_ball",
|
|
2416
|
+
"jump",
|
|
2417
|
+
"dodge_timer",
|
|
2418
|
+
"possession_score",
|
|
2419
|
+
"demolish_score",
|
|
2420
|
+
"normal_goal_score",
|
|
2421
|
+
"aerial_goal_score",
|
|
2422
|
+
"assist_goal_score",
|
|
2423
|
+
"input_restriction",
|
|
2231
2424
|
)
|
|
2232
2425
|
|
|
2233
2426
|
def __new__(
|
|
@@ -2252,6 +2445,17 @@ class MutatorSettings:
|
|
|
2252
2445
|
max_time: MaxTimeMutator = MaxTimeMutator(),
|
|
2253
2446
|
game_event: GameEventMutator = GameEventMutator(),
|
|
2254
2447
|
audio: AudioMutator = AudioMutator(),
|
|
2448
|
+
ball_gravity: BallGravityMutator = BallGravityMutator(),
|
|
2449
|
+
territory: TerritoryMutator = TerritoryMutator(),
|
|
2450
|
+
stale_ball: StaleBallMutator = StaleBallMutator(),
|
|
2451
|
+
jump: JumpMutator = JumpMutator(),
|
|
2452
|
+
dodge_timer: DodgeTimerMutator = DodgeTimerMutator(),
|
|
2453
|
+
possession_score: PossessionScoreMutator = PossessionScoreMutator(),
|
|
2454
|
+
demolish_score: DemolishScoreMutator = DemolishScoreMutator(),
|
|
2455
|
+
normal_goal_score: NormalGoalScoreMutator = NormalGoalScoreMutator(),
|
|
2456
|
+
aerial_goal_score: AerialGoalScoreMutator = AerialGoalScoreMutator(),
|
|
2457
|
+
assist_goal_score: AssistGoalScoreMutator = AssistGoalScoreMutator(),
|
|
2458
|
+
input_restriction: InputRestrictionMutator = InputRestrictionMutator(),
|
|
2255
2459
|
): ...
|
|
2256
2460
|
def __init__(
|
|
2257
2461
|
self,
|
|
@@ -2275,6 +2479,17 @@ class MutatorSettings:
|
|
|
2275
2479
|
max_time: MaxTimeMutator = MaxTimeMutator(),
|
|
2276
2480
|
game_event: GameEventMutator = GameEventMutator(),
|
|
2277
2481
|
audio: AudioMutator = AudioMutator(),
|
|
2482
|
+
ball_gravity: BallGravityMutator = BallGravityMutator(),
|
|
2483
|
+
territory: TerritoryMutator = TerritoryMutator(),
|
|
2484
|
+
stale_ball: StaleBallMutator = StaleBallMutator(),
|
|
2485
|
+
jump: JumpMutator = JumpMutator(),
|
|
2486
|
+
dodge_timer: DodgeTimerMutator = DodgeTimerMutator(),
|
|
2487
|
+
possession_score: PossessionScoreMutator = PossessionScoreMutator(),
|
|
2488
|
+
demolish_score: DemolishScoreMutator = DemolishScoreMutator(),
|
|
2489
|
+
normal_goal_score: NormalGoalScoreMutator = NormalGoalScoreMutator(),
|
|
2490
|
+
aerial_goal_score: AerialGoalScoreMutator = AerialGoalScoreMutator(),
|
|
2491
|
+
assist_goal_score: AssistGoalScoreMutator = AssistGoalScoreMutator(),
|
|
2492
|
+
input_restriction: InputRestrictionMutator = InputRestrictionMutator(),
|
|
2278
2493
|
): ...
|
|
2279
2494
|
def pack(self) -> bytes:
|
|
2280
2495
|
"""
|
|
@@ -2296,6 +2511,25 @@ class MutatorSettings:
|
|
|
2296
2511
|
def __str__(self) -> str: ...
|
|
2297
2512
|
def __repr__(self) -> str: ...
|
|
2298
2513
|
|
|
2514
|
+
class NormalGoalScoreMutator:
|
|
2515
|
+
Default = NormalGoalScoreMutator(0)
|
|
2516
|
+
Zero = NormalGoalScoreMutator(1)
|
|
2517
|
+
Two = NormalGoalScoreMutator(2)
|
|
2518
|
+
Three = NormalGoalScoreMutator(3)
|
|
2519
|
+
Five = NormalGoalScoreMutator(4)
|
|
2520
|
+
Ten = NormalGoalScoreMutator(5)
|
|
2521
|
+
|
|
2522
|
+
def __new__(cls, value: int = 0): ...
|
|
2523
|
+
def __init__(self, value: int = 0):
|
|
2524
|
+
"""
|
|
2525
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
2526
|
+
"""
|
|
2527
|
+
def __int__(self) -> int: ...
|
|
2528
|
+
def __eq__(self, other: NormalGoalScoreMutator) -> bool: ...
|
|
2529
|
+
def __hash__(self) -> str: ...
|
|
2530
|
+
def __str__(self) -> str: ...
|
|
2531
|
+
def __repr__(self) -> str: ...
|
|
2532
|
+
|
|
2299
2533
|
class OvertimeMutator:
|
|
2300
2534
|
Unlimited = OvertimeMutator(0)
|
|
2301
2535
|
FiveMaxFirstScore = OvertimeMutator(1)
|
|
@@ -2900,6 +3134,23 @@ class PolyLine3D:
|
|
|
2900
3134
|
def __str__(self) -> str: ...
|
|
2901
3135
|
def __repr__(self) -> str: ...
|
|
2902
3136
|
|
|
3137
|
+
class PossessionScoreMutator:
|
|
3138
|
+
Default = PossessionScoreMutator(0)
|
|
3139
|
+
OneSecond = PossessionScoreMutator(1)
|
|
3140
|
+
TwoSeconds = PossessionScoreMutator(2)
|
|
3141
|
+
ThreeSeconds = PossessionScoreMutator(3)
|
|
3142
|
+
|
|
3143
|
+
def __new__(cls, value: int = 0): ...
|
|
3144
|
+
def __init__(self, value: int = 0):
|
|
3145
|
+
"""
|
|
3146
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
3147
|
+
"""
|
|
3148
|
+
def __int__(self) -> int: ...
|
|
3149
|
+
def __eq__(self, other: PossessionScoreMutator) -> bool: ...
|
|
3150
|
+
def __hash__(self) -> str: ...
|
|
3151
|
+
def __str__(self) -> str: ...
|
|
3152
|
+
def __repr__(self) -> str: ...
|
|
3153
|
+
|
|
2903
3154
|
class PredictionSlice:
|
|
2904
3155
|
game_seconds: float
|
|
2905
3156
|
"""
|
|
@@ -3473,6 +3724,8 @@ class RumbleMutator:
|
|
|
3473
3724
|
HauntedBallBeam = RumbleMutator(8)
|
|
3474
3725
|
Tactical = RumbleMutator(9)
|
|
3475
3726
|
BatmanRumble = RumbleMutator(10)
|
|
3727
|
+
GrapplingOnly = RumbleMutator(11)
|
|
3728
|
+
HaymakerOnly = RumbleMutator(12)
|
|
3476
3729
|
|
|
3477
3730
|
def __new__(cls, value: int = 0): ...
|
|
3478
3731
|
def __init__(self, value: int = 0):
|
|
@@ -3724,6 +3977,21 @@ class SphereShape:
|
|
|
3724
3977
|
def __str__(self) -> str: ...
|
|
3725
3978
|
def __repr__(self) -> str: ...
|
|
3726
3979
|
|
|
3980
|
+
class StaleBallMutator:
|
|
3981
|
+
Default = StaleBallMutator(0)
|
|
3982
|
+
ThirtySeconds = StaleBallMutator(1)
|
|
3983
|
+
|
|
3984
|
+
def __new__(cls, value: int = 0): ...
|
|
3985
|
+
def __init__(self, value: int = 0):
|
|
3986
|
+
"""
|
|
3987
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
3988
|
+
"""
|
|
3989
|
+
def __int__(self) -> int: ...
|
|
3990
|
+
def __eq__(self, other: StaleBallMutator) -> bool: ...
|
|
3991
|
+
def __hash__(self) -> str: ...
|
|
3992
|
+
def __str__(self) -> str: ...
|
|
3993
|
+
def __repr__(self) -> str: ...
|
|
3994
|
+
|
|
3727
3995
|
class StartCommand:
|
|
3728
3996
|
"""
|
|
3729
3997
|
A client message to start a match using a path to a match config file.
|
|
@@ -4019,6 +4287,21 @@ class TeamInfo:
|
|
|
4019
4287
|
def __str__(self) -> str: ...
|
|
4020
4288
|
def __repr__(self) -> str: ...
|
|
4021
4289
|
|
|
4290
|
+
class TerritoryMutator:
|
|
4291
|
+
Default = TerritoryMutator(0)
|
|
4292
|
+
Territory = TerritoryMutator(1)
|
|
4293
|
+
|
|
4294
|
+
def __new__(cls, value: int = 0): ...
|
|
4295
|
+
def __init__(self, value: int = 0):
|
|
4296
|
+
"""
|
|
4297
|
+
:raises ValueError: If the `value` is not a valid enum value
|
|
4298
|
+
"""
|
|
4299
|
+
def __int__(self) -> int: ...
|
|
4300
|
+
def __eq__(self, other: TerritoryMutator) -> bool: ...
|
|
4301
|
+
def __hash__(self) -> str: ...
|
|
4302
|
+
def __str__(self) -> str: ...
|
|
4303
|
+
def __repr__(self) -> str: ...
|
|
4304
|
+
|
|
4022
4305
|
class TextHAlign:
|
|
4023
4306
|
Left = TextHAlign(0)
|
|
4024
4307
|
Center = TextHAlign(1)
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rlbot_flatbuffers
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.7
|
|
4
4
|
Classifier: Programming Language :: Rust
|
|
5
5
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
6
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
rlbot_flatbuffers-0.14.7.dist-info/METADATA,sha256=tBadcpt0IpBE3DPh2rQBtCznW8Gtk8vCi37Dl4gJNDo,3912
|
|
2
|
+
rlbot_flatbuffers-0.14.7.dist-info/WHEEL,sha256=GbZa854Nd4wq8FJ_cHwge55xWx0Hgf1aqY1IVa8I2To,95
|
|
3
|
+
rlbot_flatbuffers-0.14.7.dist-info/licenses/LICENSE,sha256=hyTFOPxHzy3qK-7kU1pXAMJ9lq2oeyrrhmM22ZIGr2k,1091
|
|
4
|
+
rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
|
|
5
|
+
rlbot_flatbuffers/__init__.pyi,sha256=wRzEH4ABU6J6UnUODkGwelb9u_-hURLir6FufJ6WVHw,125235
|
|
6
|
+
rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=7_mmVhVhkmM2jiJIsLAGX6G61JGFbJJQS0_GsvadhvU,2055168
|
|
8
|
+
rlbot_flatbuffers-0.14.7.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
rlbot_flatbuffers-0.14.6.dist-info/METADATA,sha256=EJbWXbJY_XDcA3FJWF4hJdehljH9KlQinSeJWL3ZGl0,3912
|
|
2
|
-
rlbot_flatbuffers-0.14.6.dist-info/WHEEL,sha256=GbZa854Nd4wq8FJ_cHwge55xWx0Hgf1aqY1IVa8I2To,95
|
|
3
|
-
rlbot_flatbuffers-0.14.6.dist-info/licenses/LICENSE,sha256=hyTFOPxHzy3qK-7kU1pXAMJ9lq2oeyrrhmM22ZIGr2k,1091
|
|
4
|
-
rlbot_flatbuffers/__init__.py,sha256=F5P4NTZrdoi0sGDYYT6KtaLKKZUcSOR_hW0vFAaFmhk,151
|
|
5
|
-
rlbot_flatbuffers/__init__.pyi,sha256=Hn_jCvRP1jWZWilThfAnWX4Hja7GmS2DTzbPu8hLkys,115844
|
|
6
|
-
rlbot_flatbuffers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
rlbot_flatbuffers/rlbot_flatbuffers.pyd,sha256=zGxiRkKK_0g35NlTD_3vQxgT9lV6LcpPpN2U9rxn2fM,1884160
|
|
8
|
-
rlbot_flatbuffers-0.14.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|