Skip to content

Commit

Permalink
add @returns annotation for createView #78
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Apr 23, 2017
1 parent 138e56f commit 2baf6d8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions js/linegame/model/Challenge.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ define( function( require ) {
* @param {LineGameModel} model the game model
* @param {Dimension2} challengeSize dimensions of the view rectangle that is available for rendering the challenge
* @param {GameAudioPlayer} audioPlayer the audio player, for providing audio feedback during game play
* @returns {ChallengeNode}
* @public
*/
createView: function( model, challengeSize, audioPlayer ) {
Expand Down
1 change: 1 addition & 0 deletions js/linegame/model/GraphTheLine.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ define( function( require ) {
* @param {LineGameModel} model the game model
* @param {Dimension2} challengeSize dimensions of the view rectangle that is available for rendering the challenge
* @param {GameAudioPlayer} audioPlayer the audio player, for providing audio feedback during game play
* @returns {GraphTheLineNode}
* @override
* @public
*/
Expand Down
1 change: 1 addition & 0 deletions js/linegame/model/MakeTheEquation.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ define( function( require ) {
* @param {LineGameModel} model the game model
* @param {Dimension2} challengeSize dimensions of the view rectangle that is available for rendering the challenge
* @param {GameAudioPlayer} audioPlayer the audio player, for providing audio feedback during game play
* @returns {MakeTheEquationNode}
* @public
*/
createView: function( model, challengeSize, audioPlayer ) {
Expand Down
1 change: 1 addition & 0 deletions js/linegame/model/PlaceThePoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ define( function( require ) {
* @param {LineGameModel} model the game model
* @param {Dimension2} challengeSize dimensions of the view rectangle that is available for rendering the challenge
* @param {GameAudioPlayer} audioPlayer the audio player, for providing audio feedback during game play
* @returns {PlaceThePointsNode}
* @override
* @public
*/
Expand Down

0 comments on commit 2baf6d8

Please sign in to comment.