Skip to content

Commit

Permalink
formatting, add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Oct 23, 2022
1 parent 2e976d2 commit ea3b37e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion js/Vector2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,10 @@ Vector2.ZERO = assert ? new ImmutableVector2( 0, 0 ) : new Vector2( 0, 0 );
Vector2.X_UNIT = assert ? new ImmutableVector2( 1, 0 ) : new Vector2( 1, 0 );
Vector2.Y_UNIT = assert ? new ImmutableVector2( 0, 1 ) : new Vector2( 0, 1 );

export type Vector2StateObject = { x: NumberStateObject; y: NumberStateObject };
export type Vector2StateObject = {
x: NumberStateObject;
y: NumberStateObject;
};

Vector2.Vector2IO = new IOType<Vector2, Vector2StateObject>( 'Vector2IO', {
valueType: Vector2,
Expand Down

0 comments on commit ea3b37e

Please sign in to comment.