issue #2407: Minor fix in CCTMXLayer.h

This commit is contained in:
James Chen 2013-07-19 15:03:28 +08:00
parent 7c7d21dd03
commit 7356e7c4c0
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ public:
/** returns the position in points of a given tile coordinate */
Point getPositionAt(const Point& tileCoordinate);
CC_DEPRECATED_ATTRIBUTE Point positionAt(const Point& tileCoordinate);
CC_DEPRECATED_ATTRIBUTE Point positionAt(const Point& tileCoordinate) { return getPositionAt(tileCoordinate); };
/** return the value for the specific property name */
String* getPropertyNamed(const char *propertyName) const;