Cursor chaos (#71)

* dCsBase_c mostly done

* dCsGame_c state funcs

* More labels

* Idk anymore

* label ctor

* Move some code

* Add offsets, fix EffectsStruct misconception
This commit is contained in:
robojumper
2024-10-20 16:01:00 +02:00
committed by GitHub
parent 2577b3a537
commit 3b5a959d1b
16 changed files with 1678 additions and 394 deletions
+2 -2
View File
@@ -11,11 +11,11 @@ dLytStructDList *dLytStructDList::create(EGG::Heap *heap) {
return new (heap) dLytStructDList();
}
void dLytStructDList::appendToList1(dLytStructD *other) {
void dLytStructDList::appendToList1(dLytStructC *other) {
mList1.insert(other);
}
void dLytStructDList::removeFromList1(dLytStructD *other) {
void dLytStructDList::removeFromList1(dLytStructC *other) {
mList1.remove(other);
}