mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
ninx will have fun finding the address of cocos2d::ccDrawLine
This commit is contained in:
parent
c2d1e587fa
commit
4a6b5b7c37
4 changed files with 16 additions and 8 deletions
loader/src/ui
|
@ -4,7 +4,6 @@
|
|||
#include <Geode/binding/CCMenuItemSpriteExtra.hpp>
|
||||
#include <Geode/binding/CCMenuItemToggler.hpp>
|
||||
#include <Geode/binding/FLAlertLayer.hpp>
|
||||
#include <Geode/binding/StatsCell.hpp>
|
||||
#include <Geode/ui/GeodeUI.hpp>
|
||||
#include <loader/LoaderImpl.hpp>
|
||||
#include <utility>
|
||||
|
@ -13,7 +12,10 @@
|
|||
// InstallListCell
|
||||
|
||||
void InstallListCell::draw() {
|
||||
reinterpret_cast<StatsCell*>(this)->StatsCell::draw();
|
||||
auto size = this->getContentSize();
|
||||
glLineWidth(2.0f);
|
||||
cocos2d::ccDrawLine({ 1.0f, 1.0f }, { size.width - 1.0f, 1.0f });
|
||||
cocos2d::ccDrawLine({ 1.0f, size.height - 1.0f }, { size.width - 1.0f, size.height - 1.0f });
|
||||
}
|
||||
|
||||
float InstallListCell::getLogoSize() const {
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
#include <Geode/binding/CCMenuItemSpriteExtra.hpp>
|
||||
#include <Geode/binding/CCMenuItemToggler.hpp>
|
||||
#include <Geode/binding/FLAlertLayer.hpp>
|
||||
#include <Geode/binding/StatsCell.hpp>
|
||||
#include <Geode/ui/GeodeUI.hpp>
|
||||
#include <loader/LoaderImpl.hpp>
|
||||
#include "../info/TagNode.hpp"
|
||||
|
@ -21,7 +20,10 @@ static bool tryOrAlert(Result<T> const& res, char const* title) {
|
|||
}
|
||||
|
||||
void ModListCell::draw() {
|
||||
reinterpret_cast<StatsCell*>(this)->StatsCell::draw();
|
||||
auto size = this->getContentSize();
|
||||
glLineWidth(2.0f);
|
||||
cocos2d::ccDrawLine({ 1.0f, 1.0f }, { size.width - 1.0f, 1.0f });
|
||||
cocos2d::ccDrawLine({ 1.0f, size.height - 1.0f }, { size.width - 1.0f, size.height - 1.0f });
|
||||
}
|
||||
|
||||
float ModListCell::getLogoSize() const {
|
||||
|
|
|
@ -4,13 +4,15 @@
|
|||
#include <Geode/binding/CCMenuItemSpriteExtra.hpp>
|
||||
#include <Geode/binding/CCMenuItemToggler.hpp>
|
||||
#include <Geode/binding/FLAlertLayer.hpp>
|
||||
#include <Geode/binding/StatsCell.hpp>
|
||||
#include <Geode/ui/GeodeUI.hpp>
|
||||
#include <loader/LoaderImpl.hpp>
|
||||
#include <utility>
|
||||
|
||||
void ProblemsListCell::draw() {
|
||||
reinterpret_cast<StatsCell*>(this)->StatsCell::draw();
|
||||
auto size = this->getContentSize();
|
||||
glLineWidth(2.0f);
|
||||
cocos2d::ccDrawLine({ 1.0f, 1.0f }, { size.width - 1.0f, 1.0f });
|
||||
cocos2d::ccDrawLine({ 1.0f, size.height - 1.0f }, { size.width - 1.0f, size.height - 1.0f });
|
||||
}
|
||||
|
||||
float ProblemsListCell::getLogoSize() const {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#include <Geode/binding/StatsCell.hpp>
|
||||
#include <Geode/binding/TableView.hpp>
|
||||
#include <Geode/binding/CCContentLayer.hpp>
|
||||
#include <Geode/ui/ListView.hpp>
|
||||
|
@ -11,7 +10,10 @@ GenericListCell::GenericListCell(char const* name, CCSize size) :
|
|||
TableViewCell(name, size.width, size.height) {}
|
||||
|
||||
void GenericListCell::draw() {
|
||||
reinterpret_cast<StatsCell*>(this)->StatsCell::draw();
|
||||
auto size = this->getContentSize();
|
||||
glLineWidth(2.0f);
|
||||
cocos2d::ccDrawLine({ 1.0f, 1.0f }, { size.width - 1.0f, 1.0f });
|
||||
cocos2d::ccDrawLine({ 1.0f, size.height - 1.0f }, { size.width - 1.0f, size.height - 1.0f });
|
||||
}
|
||||
|
||||
GenericListCell* GenericListCell::create(char const* key, CCSize size) {
|
||||
|
|
Loading…
Add table
Reference in a new issue