Skip to content

Commit

Permalink
pdom node type for ISCL objects/spheres, see phetsims/gravity-force-l…
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarlow12 committed Oct 24, 2018
1 parent 5dbbb44 commit a2950bf
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions js/view/ISLCObjectPDOMNode.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Copyright 2017-2018, University of Colorado Boulder

define( require => {
'use strict';

// modules
const inverseSquareLawCommon = require( 'INVERSE_SQUARE_LAW_COMMON/inverseSquareLawCommon' );
const Node = require( 'SCENERY/nodes/Node' );

class ISLCObjectPDOMNode extends Node {

constructor( model, objecModel, options ) {

options = _.extends( {

}, options );

super( options );
}
}

return inverseSquareLawCommon.register( 'ISLCObjectPDOMNode', ISLCObjectPDOMNode );
} );

0 comments on commit a2950bf

Please sign in to comment.