├── .editorconfig ├── .github └── workflows │ ├── build.yml │ ├── deploy.yml │ └── release.yml ├── .gitignore ├── CMakeLists.txt ├── CNAME ├── LICENSE ├── README.md ├── about.md ├── changelog.md ├── docs ├── index.md └── more-icons-api │ ├── change-icon.md │ ├── current-icon.md │ ├── get-icon.md │ ├── icon-name.md │ ├── index.md │ ├── list-icons.md │ ├── load-icon.md │ ├── player-object.md │ ├── robot-sprite.md │ ├── simple-player.md │ └── unload-icon.md ├── fix-docs.js ├── flash.toml ├── include ├── IconInfo.hpp ├── MoreIcons.hpp ├── MoreIconsV2.hpp └── TrailInfo.hpp ├── logo.png ├── mod.json ├── resources ├── MI_moreIcons_001.png ├── MI_pencil_001.png ├── MI_saveBtn_001.png ├── edit-icon-popup.png ├── icon-list-popup.png ├── icon-name-popup.png ├── log-viewer-popup.png ├── more-icons-popup.png └── view-icon-popup.png └── src ├── MoreIcons.cpp ├── MoreIcons.hpp ├── MoreIconsAPI.cpp ├── classes ├── misc │ ├── LazyIcon.cpp │ ├── LazyIcon.hpp │ ├── ThreadPool.cpp │ └── ThreadPool.hpp ├── popup │ ├── MoreIconsPopup.cpp │ ├── MoreIconsPopup.hpp │ ├── edit │ │ ├── EditIconPopup.cpp │ │ ├── EditIconPopup.hpp │ │ ├── EditTrailPopup.cpp │ │ ├── EditTrailPopup.hpp │ │ ├── IconColorPopup.cpp │ │ ├── IconColorPopup.hpp │ │ ├── IconPresetPopup.cpp │ │ ├── IconPresetPopup.hpp │ │ ├── ImageRenderer.cpp │ │ ├── ImageRenderer.hpp │ │ ├── SaveIconPopup.cpp │ │ └── SaveIconPopup.hpp │ ├── info │ │ ├── IconNamePopup.cpp │ │ ├── IconNamePopup.hpp │ │ ├── MoreInfoPopup.cpp │ │ ├── MoreInfoPopup.hpp │ │ ├── SpecialSettingsPopup.cpp │ │ └── SpecialSettingsPopup.hpp │ ├── log │ │ ├── LogCell.cpp │ │ ├── LogCell.hpp │ │ ├── LogLayer.cpp │ │ └── LogLayer.hpp │ └── view │ │ ├── IconViewPopup.cpp │ │ ├── IconViewPopup.hpp │ │ ├── ViewIconPopup.cpp │ │ └── ViewIconPopup.hpp └── scroll │ ├── BiggerContentLayer.cpp │ ├── BiggerContentLayer.hpp │ ├── BiggerScrollLayer.cpp │ └── BiggerScrollLayer.hpp ├── hooks ├── CCDirector.cpp ├── CCFileUtils.cpp ├── CharacterColorPage.cpp ├── GJBaseGameLayer.cpp ├── GJGarageLayer.cpp ├── GJRobotSprite.cpp ├── GameManager.cpp ├── LoadingLayer.cpp ├── MenuGameLayer.cpp ├── MenuLayer.cpp ├── PlayerObject.cpp ├── ProfilePage.cpp └── SimplePlayer.cpp └── utils ├── Get.cpp ├── Get.hpp ├── Load.cpp └── Load.hpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | more-icons.hiimjasmine00.com -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/README.md -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/about.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/more-icons-api/change-icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/more-icons-api/change-icon.md -------------------------------------------------------------------------------- /docs/more-icons-api/current-icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/more-icons-api/current-icon.md -------------------------------------------------------------------------------- /docs/more-icons-api/get-icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/more-icons-api/get-icon.md -------------------------------------------------------------------------------- /docs/more-icons-api/icon-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/more-icons-api/icon-name.md -------------------------------------------------------------------------------- /docs/more-icons-api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/more-icons-api/index.md -------------------------------------------------------------------------------- /docs/more-icons-api/list-icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/more-icons-api/list-icons.md -------------------------------------------------------------------------------- /docs/more-icons-api/load-icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/more-icons-api/load-icon.md -------------------------------------------------------------------------------- /docs/more-icons-api/player-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/more-icons-api/player-object.md -------------------------------------------------------------------------------- /docs/more-icons-api/robot-sprite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/more-icons-api/robot-sprite.md -------------------------------------------------------------------------------- /docs/more-icons-api/simple-player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/more-icons-api/simple-player.md -------------------------------------------------------------------------------- /docs/more-icons-api/unload-icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/docs/more-icons-api/unload-icon.md -------------------------------------------------------------------------------- /fix-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/fix-docs.js -------------------------------------------------------------------------------- /flash.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/flash.toml -------------------------------------------------------------------------------- /include/IconInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/include/IconInfo.hpp -------------------------------------------------------------------------------- /include/MoreIcons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/include/MoreIcons.hpp -------------------------------------------------------------------------------- /include/MoreIconsV2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/include/MoreIconsV2.hpp -------------------------------------------------------------------------------- /include/TrailInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/include/TrailInfo.hpp -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/logo.png -------------------------------------------------------------------------------- /mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/mod.json -------------------------------------------------------------------------------- /resources/MI_moreIcons_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/resources/MI_moreIcons_001.png -------------------------------------------------------------------------------- /resources/MI_pencil_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/resources/MI_pencil_001.png -------------------------------------------------------------------------------- /resources/MI_saveBtn_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/resources/MI_saveBtn_001.png -------------------------------------------------------------------------------- /resources/edit-icon-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/resources/edit-icon-popup.png -------------------------------------------------------------------------------- /resources/icon-list-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/resources/icon-list-popup.png -------------------------------------------------------------------------------- /resources/icon-name-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/resources/icon-name-popup.png -------------------------------------------------------------------------------- /resources/log-viewer-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/resources/log-viewer-popup.png -------------------------------------------------------------------------------- /resources/more-icons-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/resources/more-icons-popup.png -------------------------------------------------------------------------------- /resources/view-icon-popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/resources/view-icon-popup.png -------------------------------------------------------------------------------- /src/MoreIcons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/MoreIcons.cpp -------------------------------------------------------------------------------- /src/MoreIcons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/MoreIcons.hpp -------------------------------------------------------------------------------- /src/MoreIconsAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/MoreIconsAPI.cpp -------------------------------------------------------------------------------- /src/classes/misc/LazyIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/misc/LazyIcon.cpp -------------------------------------------------------------------------------- /src/classes/misc/LazyIcon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/misc/LazyIcon.hpp -------------------------------------------------------------------------------- /src/classes/misc/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/misc/ThreadPool.cpp -------------------------------------------------------------------------------- /src/classes/misc/ThreadPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/misc/ThreadPool.hpp -------------------------------------------------------------------------------- /src/classes/popup/MoreIconsPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/MoreIconsPopup.cpp -------------------------------------------------------------------------------- /src/classes/popup/MoreIconsPopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/MoreIconsPopup.hpp -------------------------------------------------------------------------------- /src/classes/popup/edit/EditIconPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/EditIconPopup.cpp -------------------------------------------------------------------------------- /src/classes/popup/edit/EditIconPopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/EditIconPopup.hpp -------------------------------------------------------------------------------- /src/classes/popup/edit/EditTrailPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/EditTrailPopup.cpp -------------------------------------------------------------------------------- /src/classes/popup/edit/EditTrailPopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/EditTrailPopup.hpp -------------------------------------------------------------------------------- /src/classes/popup/edit/IconColorPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/IconColorPopup.cpp -------------------------------------------------------------------------------- /src/classes/popup/edit/IconColorPopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/IconColorPopup.hpp -------------------------------------------------------------------------------- /src/classes/popup/edit/IconPresetPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/IconPresetPopup.cpp -------------------------------------------------------------------------------- /src/classes/popup/edit/IconPresetPopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/IconPresetPopup.hpp -------------------------------------------------------------------------------- /src/classes/popup/edit/ImageRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/ImageRenderer.cpp -------------------------------------------------------------------------------- /src/classes/popup/edit/ImageRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/ImageRenderer.hpp -------------------------------------------------------------------------------- /src/classes/popup/edit/SaveIconPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/SaveIconPopup.cpp -------------------------------------------------------------------------------- /src/classes/popup/edit/SaveIconPopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/edit/SaveIconPopup.hpp -------------------------------------------------------------------------------- /src/classes/popup/info/IconNamePopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/info/IconNamePopup.cpp -------------------------------------------------------------------------------- /src/classes/popup/info/IconNamePopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/info/IconNamePopup.hpp -------------------------------------------------------------------------------- /src/classes/popup/info/MoreInfoPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/info/MoreInfoPopup.cpp -------------------------------------------------------------------------------- /src/classes/popup/info/MoreInfoPopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/info/MoreInfoPopup.hpp -------------------------------------------------------------------------------- /src/classes/popup/info/SpecialSettingsPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/info/SpecialSettingsPopup.cpp -------------------------------------------------------------------------------- /src/classes/popup/info/SpecialSettingsPopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/info/SpecialSettingsPopup.hpp -------------------------------------------------------------------------------- /src/classes/popup/log/LogCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/log/LogCell.cpp -------------------------------------------------------------------------------- /src/classes/popup/log/LogCell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/log/LogCell.hpp -------------------------------------------------------------------------------- /src/classes/popup/log/LogLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/log/LogLayer.cpp -------------------------------------------------------------------------------- /src/classes/popup/log/LogLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/log/LogLayer.hpp -------------------------------------------------------------------------------- /src/classes/popup/view/IconViewPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/view/IconViewPopup.cpp -------------------------------------------------------------------------------- /src/classes/popup/view/IconViewPopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/view/IconViewPopup.hpp -------------------------------------------------------------------------------- /src/classes/popup/view/ViewIconPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/view/ViewIconPopup.cpp -------------------------------------------------------------------------------- /src/classes/popup/view/ViewIconPopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/popup/view/ViewIconPopup.hpp -------------------------------------------------------------------------------- /src/classes/scroll/BiggerContentLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/scroll/BiggerContentLayer.cpp -------------------------------------------------------------------------------- /src/classes/scroll/BiggerContentLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/scroll/BiggerContentLayer.hpp -------------------------------------------------------------------------------- /src/classes/scroll/BiggerScrollLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/scroll/BiggerScrollLayer.cpp -------------------------------------------------------------------------------- /src/classes/scroll/BiggerScrollLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/classes/scroll/BiggerScrollLayer.hpp -------------------------------------------------------------------------------- /src/hooks/CCDirector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/CCDirector.cpp -------------------------------------------------------------------------------- /src/hooks/CCFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/CCFileUtils.cpp -------------------------------------------------------------------------------- /src/hooks/CharacterColorPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/CharacterColorPage.cpp -------------------------------------------------------------------------------- /src/hooks/GJBaseGameLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/GJBaseGameLayer.cpp -------------------------------------------------------------------------------- /src/hooks/GJGarageLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/GJGarageLayer.cpp -------------------------------------------------------------------------------- /src/hooks/GJRobotSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/GJRobotSprite.cpp -------------------------------------------------------------------------------- /src/hooks/GameManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/GameManager.cpp -------------------------------------------------------------------------------- /src/hooks/LoadingLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/LoadingLayer.cpp -------------------------------------------------------------------------------- /src/hooks/MenuGameLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/MenuGameLayer.cpp -------------------------------------------------------------------------------- /src/hooks/MenuLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/MenuLayer.cpp -------------------------------------------------------------------------------- /src/hooks/PlayerObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/PlayerObject.cpp -------------------------------------------------------------------------------- /src/hooks/ProfilePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/ProfilePage.cpp -------------------------------------------------------------------------------- /src/hooks/SimplePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/hooks/SimplePlayer.cpp -------------------------------------------------------------------------------- /src/utils/Get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/utils/Get.cpp -------------------------------------------------------------------------------- /src/utils/Get.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/utils/Get.hpp -------------------------------------------------------------------------------- /src/utils/Load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/utils/Load.cpp -------------------------------------------------------------------------------- /src/utils/Load.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiimjasmine00/MoreIcons/HEAD/src/utils/Load.hpp --------------------------------------------------------------------------------