Merge pull request #3828 from ricardoquesada/develop

removes unneeded comments from coding_style
This commit is contained in:
Ricardo Quesada 2013-09-25 13:10:35 -07:00
commit 6def9e5eb3
1 changed files with 3 additions and 3 deletions

View File

@ -71,9 +71,9 @@ protected:
/* After adding all the methods, add the ivars */
/* all ivars must start with _ */
/* Do not use Hungarian notation */
TextureAtlas* _textureAtlas; /// SpriteBatchNode texture atlas (weak reference)
int _atlasIndex; /// Absolute (real) Index on the SpriteSheet
SpriteBatchNode* _batchNode; /// Used batch node (weak reference)
TextureAtlas* _textureAtlas;
int _atlasIndex;
SpriteBatchNode* _batchNode;
};
```