-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
15 changed files
with
641 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,3 +56,5 @@ build-*/ | |
|
||
# Visual Studio | ||
.vs/ | ||
|
||
bindings/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#pragma once | ||
|
||
#include "Geode/loader/Log.hpp" | ||
#include <Geode/Geode.hpp> | ||
#include <Geode/Loader.hpp> | ||
#include <Geode/binding/CCMenuItemSpriteExtra.hpp> | ||
#include <Geode/binding/CCTextInputNode.hpp> | ||
#include <Geode/binding/CustomSongWidget.hpp> | ||
#include <Geode/binding/GameManager.hpp> | ||
#include <Geode/binding/LevelEditorLayer.hpp> | ||
#include <Geode/binding/Slider.hpp> | ||
#include <Geode/binding/SliderThumb.hpp> | ||
#include <Geode/binding/SongInfoObject.hpp> | ||
#include <Geode/loader/Event.hpp> | ||
#include <Geode/loader/Mod.hpp> | ||
#include <Geode/loader/Setting.hpp> | ||
#include <Geode/loader/SettingEvent.hpp> | ||
#include <Geode/loader/SettingNode.hpp> | ||
#include <Geode/modify/CustomSongWidget.hpp> | ||
#include <Geode/modify/EditButtonBar.hpp> | ||
#include <Geode/modify/EditLevelLayer.hpp> | ||
#include <Geode/modify/EditorUI.hpp> | ||
#include <Geode/modify/FMODAudioEngine.hpp> | ||
#include <Geode/modify/GameManager.hpp> | ||
#include <Geode/modify/IDManager.hpp> | ||
#include <Geode/modify/LevelBrowserLayer.hpp> | ||
#include <Geode/modify/LevelInfoLayer.hpp> | ||
#include <Geode/modify/MenuLayer.hpp> | ||
#include <Geode/modify/PlayerObject.hpp> | ||
#include <Geode/ui/BasedButtonSprite.hpp> | ||
#include <Geode/ui/ColorPickPopup.hpp> | ||
#include <Geode/ui/GeodeUI.hpp> | ||
#include <Geode/ui/InputNode.hpp> | ||
#include <Geode/ui/Popup.hpp> | ||
#include <Geode/ui/TextInput.hpp> | ||
#include <Geode/utils/Task.hpp> | ||
#include <Geode/utils/cocos.hpp> | ||
#include <Geode/utils/string.hpp> | ||
#include <Geode/utils/web.hpp> | ||
#include <matjson.hpp> | ||
|
||
using namespace geode::prelude; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#include <Geode/binding/StatsCell.hpp> | ||
|
||
#include "list_cell.hpp" | ||
|
||
bool JBListCell::init(CCSize const &size) { | ||
m_width = size.width; | ||
m_height = size.height; | ||
this->setContentSize(size); | ||
this->setID("nong-list-cell"); | ||
return true; | ||
} | ||
|
||
void JBListCell::draw() { reinterpret_cast<StatsCell *>(this)->StatsCell::draw(); } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#pragma once | ||
|
||
#include <Geode/binding/FLAlertLayerProtocol.hpp> | ||
#include <Geode/cocos/cocoa/CCGeometry.h> | ||
#include <Geode/cocos/layers_scenes_transitions_nodes/CCLayer.h> | ||
|
||
using namespace geode::prelude; | ||
|
||
class JBListCell : public CCLayer, public FLAlertLayerProtocol { | ||
protected: | ||
float m_width; | ||
float m_height; | ||
|
||
bool init(CCSize const &size); | ||
void draw() override; | ||
}; |
Oops, something went wrong.