Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions bindings/2.2081/GeometryDash.bro
Original file line number Diff line number Diff line change
Expand Up @@ -19203,7 +19203,8 @@ class SongInfoObject : cocos2d::CCNode {

static SongInfoObject* create(cocos2d::CCDictionary* dict) = win 0x3448b0, imac 0x58c1e0, m1 0x4d740c, ios 0x154920;
static SongInfoObject* create(int songID) = win 0x344730, imac 0x596ea0, m1 0x4e0cc0, ios 0x15b164;
static SongInfoObject* create(int songID, gd::string songName, gd::string artistName, int artistID, float filesize, gd::string youtubeVideo, gd::string youtubeChannel, gd::string url, gd::string unknown, int nongType, gd::string extraArtistIDs, bool isNew, int libraryOrder, int priority) = win 0x345bf0, imac 0x593d00, m1 0x4ddfe4, ios 0x158f48;
/// @param downloadLinkOverride The user-friendly page URL for the song
static SongInfoObject* create(int songID, gd::string songName, gd::string artistName, int artistID, float filesize, gd::string youtubeVideo, gd::string youtubeChannel, gd::string url, gd::string downloadLinkOverride, int nongType, gd::string extraArtistIDs, bool isNew, int libraryOrder, int priority) = win 0x345bf0, imac 0x593d00, m1 0x4ddfe4, ios 0x158f48;
static SongInfoObject* createWithCoder(DS_Dictionary* dict) = win 0x346250, imac 0x5974f0, m1 0x4e1260, ios 0x15b644;

virtual void encodeWithCoder(DS_Dictionary* dict) = win 0x3465b0, imac 0x597d60, m1 0x4e1920, ios 0x15bb98;
Expand All @@ -19215,7 +19216,8 @@ class SongInfoObject : cocos2d::CCNode {
gd::string getArtistNames(int unused) = win 0x3467b0, imac 0x597f70, m1 0x4e1ac8, ios 0x15bd40;
int getExtraArtistCount() = win 0x346c00, m1 0x4e20a0, imac 0x598730, ios 0x15c0b4;
gd::string getTagsString(bool shortTags) = win 0x346e60, imac 0x5988a0, m1 0x4e21ac, ios 0x15c100;
bool init(int songID, gd::string songName, gd::string artistName, int artistID, float filesize, gd::string youtubeVideo, gd::string youtubeChannel, gd::string url, gd::string unknown, int nongType, gd::string extraArtistIDs, bool isNew, int libraryOrder, int priority) = win 0x345e60, imac 0x5970a0, m1 0x4e0e50, ios 0x15b378;
/// @param downloadLinkOverride The user-friendly page URL for the song
bool init(int songID, gd::string songName, gd::string artistName, int artistID, float filesize, gd::string youtubeVideo, gd::string youtubeChannel, gd::string url, gd::string downloadLinkOverride, int nongType, gd::string extraArtistIDs, bool isNew, int libraryOrder, int priority) = win 0x345e60, imac 0x5970a0, m1 0x4e0e50, ios 0x15b378;
void updateArtists(gd::string artists) = win inline, imac 0x597310, m1 0x4e1090, ios 0x15b510;

int m_songID;
Expand All @@ -19224,7 +19226,7 @@ class SongInfoObject : cocos2d::CCNode {
gd::string m_youtubeVideo;
gd::string m_youtubeChannel;
gd::string m_songUrl;
gd::string m_unkString;
gd::string m_downloadLinkOverride;
int m_artistID;
float m_fileSize;
int m_nongType;
Expand Down
2 changes: 1 addition & 1 deletion bindings/2.2081/inline/SongInfoObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ void SongInfoObject::copyValues(SongInfoObject* object) {
if (!object) return;
m_youtubeVideo = object->m_youtubeVideo;
m_youtubeChannel = object->m_youtubeChannel;
m_unkString = object->m_unkString;
m_downloadLinkOverride = object->m_downloadLinkOverride;
m_songUrl = object->m_songUrl;
m_extraArtists = object->m_extraArtists;
m_extraArtistNames = object->m_extraArtistNames;
Expand Down
Loading