mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
fix missing GEODE_DLL in ccarray funcs
This commit is contained in:
parent
677bd762de
commit
e4054d46fc
1 changed files with 2 additions and 2 deletions
4
loader/include/Geode/cocos/cocoa/CCArray.h
vendored
4
loader/include/Geode/cocos/cocoa/CCArray.h
vendored
|
@ -186,7 +186,7 @@ public:
|
|||
* Returns first element, or null if empty
|
||||
* @note Geode addition
|
||||
*/
|
||||
CCObject* firstObject();
|
||||
GEODE_DLL CCObject* firstObject();
|
||||
/** Returns last element */
|
||||
CCObject* lastObject();
|
||||
/** Returns a random element */
|
||||
|
@ -215,7 +215,7 @@ public:
|
|||
* Remove first object, or do nothing if array is empty
|
||||
* @note Geode addition
|
||||
*/
|
||||
void removeFirstObject(bool bReleaseObj = true);
|
||||
GEODE_DLL void removeFirstObject(bool bReleaseObj = true);
|
||||
/** Remove last object */
|
||||
void removeLastObject(bool bReleaseObj = true);
|
||||
/** Remove a certain object */
|
||||
|
|
Loading…
Reference in a new issue