| 14 | gl::TextureFontRef WordNode::sFont; |
| 15 | |
| 16 | WordNode::WordNode( const string &word ) |
| 17 | : mWord( word ), mShouldBeDeleted( false ), mIsSelected( false ) |
| 18 | { |
| 19 | mWordPixelLength = sFont->measureString( mWord ).x; |
| 20 | } |
| 21 | |
| 22 | bool WordNode::isPointInside( const vec2 &pt ) const |
| 23 | { |
nothing calls this directly
no test coverage detected