mirror of https://github.com/axmolengine/axmol.git
Fixes tag typos: deprecatd -> deprecated
This commit is contained in:
parent
88e11cab84
commit
f0ee1e62c0
|
@ -95,13 +95,13 @@ public:
|
|||
/** returns the tile that belongs to a certain position of the grid */
|
||||
Quad3 getTile(const Point& position) const;
|
||||
|
||||
/** @deprecatd Use getTile() instead */
|
||||
/** @deprecated Use getTile() instead */
|
||||
CC_DEPRECATED_ATTRIBUTE Quad3 tile(const Point& position) { return getTile(position); }
|
||||
|
||||
/** returns the non-transformed tile that belongs to a certain position of the grid */
|
||||
Quad3 getOriginalTile(const Point& position) const;
|
||||
|
||||
/** @deprecatd Use getOriginalTile() instead */
|
||||
/** @deprecated Use getOriginalTile() instead */
|
||||
CC_DEPRECATED_ATTRIBUTE Quad3 originalTile(const Point& position) { return getOriginalTile(position); }
|
||||
|
||||
/** sets a new tile to a certain position of the grid */
|
||||
|
|
|
@ -62,7 +62,7 @@ public:
|
|||
/** @deprecated Use getInstance() instead */
|
||||
CC_DEPRECATED_ATTRIBUTE static AnimationCache* sharedAnimationCache() { return AnimationCache::getInstance(); }
|
||||
|
||||
/** @deprecatd Use destroyInstance() instead */
|
||||
/** @deprecated Use destroyInstance() instead */
|
||||
CC_DEPRECATED_ATTRIBUTE static void purgeSharedAnimationCache() { return AnimationCache::destroyInstance(); }
|
||||
|
||||
bool init(void);
|
||||
|
@ -107,4 +107,4 @@ private:
|
|||
|
||||
NS_CC_END
|
||||
|
||||
#endif // __CC_ANIMATION_CACHE_H__
|
||||
#endif // __CC_ANIMATION_CACHE_H__
|
||||
|
|
Loading…
Reference in New Issue