Skip to content

Commit

Permalink
phetsims/joist#171 add comments to simula-rasa indicating that unused…
Browse files Browse the repository at this point in the history
… step functions should be deleted
  • Loading branch information
pixelzoom committed Jun 10, 2015
1 parent 14ef7e8 commit c496bbf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions js/simula-rasa/model/SimulaRasaModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ define( function( require ) {

return inherit( PropertySet, SimulaRasaModel, {

// Called by the animation loop. Optional, so if your model has no animation, you can omit this.
//TODO Called by the animation loop. Optional, so if your model has no animation, please delete this.
step: function( dt ) {
// Handle model animation here.
//TODO Handle model animation here.
}
} );
} );
4 changes: 2 additions & 2 deletions js/simula-rasa/view/SimulaRasaScreenView.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ define( function( require ) {

return inherit( ScreenView, SimulaRasaScreenView, {

// Called by the animation loop. Optional, so if your view has no animation, you can omit this.
//TODO Called by the animation loop. Optional, so if your view has no animation, please delete this.
step: function( dt ) {
// Handle view animation here.
//TODO Handle view animation here.
}
} );
} );

0 comments on commit c496bbf

Please sign in to comment.