@@ -187,10 +187,6 @@ export interface Change_NewGameState {
187187 gameState ?: GameState ;
188188}
189189
190- function createBaseStateChange ( ) : StateChange {
191- return { } ;
192- }
193-
194190export const StateChange = {
195191 fromJSON ( object : any ) : StateChange {
196192 return {
@@ -213,10 +209,6 @@ export const StateChange = {
213209 } ,
214210} ;
215211
216- function createBaseChange ( ) : Change {
217- return { change : undefined } ;
218- }
219-
220212export const Change = {
221213 fromJSON ( object : any ) : Change {
222214 return {
@@ -332,10 +324,6 @@ export const Change = {
332324 } ,
333325} ;
334326
335- function createBaseChange_NewCommand ( ) : Change_NewCommand {
336- return { } ;
337- }
338-
339327export const Change_NewCommand = {
340328 fromJSON ( object : any ) : Change_NewCommand {
341329 return { command : isSet ( object . command ) ? Command . fromJSON ( object . command ) : undefined } ;
@@ -348,10 +336,6 @@ export const Change_NewCommand = {
348336 } ,
349337} ;
350338
351- function createBaseChange_ChangeStage ( ) : Change_ChangeStage {
352- return { } ;
353- }
354-
355339export const Change_ChangeStage = {
356340 fromJSON ( object : any ) : Change_ChangeStage {
357341 return {
@@ -366,10 +350,6 @@ export const Change_ChangeStage = {
366350 } ,
367351} ;
368352
369- function createBaseChange_SetBallPlacementPos ( ) : Change_SetBallPlacementPos {
370- return { } ;
371- }
372-
373353export const Change_SetBallPlacementPos = {
374354 fromJSON ( object : any ) : Change_SetBallPlacementPos {
375355 return { pos : isSet ( object . pos ) ? Vector2 . fromJSON ( object . pos ) : undefined } ;
@@ -382,10 +362,6 @@ export const Change_SetBallPlacementPos = {
382362 } ,
383363} ;
384364
385- function createBaseChange_AddYellowCard ( ) : Change_AddYellowCard {
386- return { } ;
387- }
388-
389365export const Change_AddYellowCard = {
390366 fromJSON ( object : any ) : Change_AddYellowCard {
391367 return {
@@ -403,10 +379,6 @@ export const Change_AddYellowCard = {
403379 } ,
404380} ;
405381
406- function createBaseChange_AddRedCard ( ) : Change_AddRedCard {
407- return { } ;
408- }
409-
410382export const Change_AddRedCard = {
411383 fromJSON ( object : any ) : Change_AddRedCard {
412384 return {
@@ -424,10 +396,6 @@ export const Change_AddRedCard = {
424396 } ,
425397} ;
426398
427- function createBaseChange_YellowCardOver ( ) : Change_YellowCardOver {
428- return { } ;
429- }
430-
431399export const Change_YellowCardOver = {
432400 fromJSON ( object : any ) : Change_YellowCardOver {
433401 return { forTeam : isSet ( object . forTeam ) ? teamFromJSON ( object . forTeam ) : Team . UNKNOWN } ;
@@ -440,10 +408,6 @@ export const Change_YellowCardOver = {
440408 } ,
441409} ;
442410
443- function createBaseChange_AddGameEvent ( ) : Change_AddGameEvent {
444- return { } ;
445- }
446-
447411export const Change_AddGameEvent = {
448412 fromJSON ( object : any ) : Change_AddGameEvent {
449413 return { gameEvent : isSet ( object . gameEvent ) ? GameEvent . fromJSON ( object . gameEvent ) : undefined } ;
@@ -457,10 +421,6 @@ export const Change_AddGameEvent = {
457421 } ,
458422} ;
459423
460- function createBaseChange_AddPassiveGameEvent ( ) : Change_AddPassiveGameEvent {
461- return { } ;
462- }
463-
464424export const Change_AddPassiveGameEvent = {
465425 fromJSON ( object : any ) : Change_AddPassiveGameEvent {
466426 return { gameEvent : isSet ( object . gameEvent ) ? GameEvent . fromJSON ( object . gameEvent ) : undefined } ;
@@ -474,10 +434,6 @@ export const Change_AddPassiveGameEvent = {
474434 } ,
475435} ;
476436
477- function createBaseChange_AddProposal ( ) : Change_AddProposal {
478- return { } ;
479- }
480-
481437export const Change_AddProposal = {
482438 fromJSON ( object : any ) : Change_AddProposal {
483439 return { proposal : isSet ( object . proposal ) ? Proposal . fromJSON ( object . proposal ) : undefined } ;
@@ -490,10 +446,6 @@ export const Change_AddProposal = {
490446 } ,
491447} ;
492448
493- function createBaseChange_AcceptProposalGroup ( ) : Change_AcceptProposalGroup {
494- return { } ;
495- }
496-
497449export const Change_AcceptProposalGroup = {
498450 fromJSON ( object : any ) : Change_AcceptProposalGroup {
499451 return {
@@ -510,10 +462,6 @@ export const Change_AcceptProposalGroup = {
510462 } ,
511463} ;
512464
513- function createBaseChange_UpdateConfig ( ) : Change_UpdateConfig {
514- return { } ;
515- }
516-
517465export const Change_UpdateConfig = {
518466 fromJSON ( object : any ) : Change_UpdateConfig {
519467 return {
@@ -532,10 +480,6 @@ export const Change_UpdateConfig = {
532480 } ,
533481} ;
534482
535- function createBaseChange_UpdateTeamState ( ) : Change_UpdateTeamState {
536- return { } ;
537- }
538-
539483export const Change_UpdateTeamState = {
540484 fromJSON ( object : any ) : Change_UpdateTeamState {
541485 return {
@@ -591,10 +535,6 @@ export const Change_UpdateTeamState = {
591535 } ,
592536} ;
593537
594- function createBaseChange_SwitchColors ( ) : Change_SwitchColors {
595- return { } ;
596- }
597-
598538export const Change_SwitchColors = {
599539 fromJSON ( _ : any ) : Change_SwitchColors {
600540 return { } ;
@@ -606,10 +546,6 @@ export const Change_SwitchColors = {
606546 } ,
607547} ;
608548
609- function createBaseChange_Revert ( ) : Change_Revert {
610- return { } ;
611- }
612-
613549export const Change_Revert = {
614550 fromJSON ( object : any ) : Change_Revert {
615551 return { changeId : isSet ( object . changeId ) ? Number ( object . changeId ) : 0 } ;
@@ -622,10 +558,6 @@ export const Change_Revert = {
622558 } ,
623559} ;
624560
625- function createBaseChange_NewGameState ( ) : Change_NewGameState {
626- return { } ;
627- }
628-
629561export const Change_NewGameState = {
630562 fromJSON ( object : any ) : Change_NewGameState {
631563 return { gameState : isSet ( object . gameState ) ? GameState . fromJSON ( object . gameState ) : undefined } ;
0 commit comments