mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-06-19 01:20:08 -07:00
* Add cheat to allow Elegy of Emptiness anywhere * Use modern menu for Elegy Anywhere, rename VB Removed redundant null from Elegy scene check Moved ElegyAnywhere enhancement's menu order * Remove extraneous widgets from ElegyAnywhere menu
11 lines
266 B
C++
11 lines
266 B
C++
#include <libultraship/bridge.h>
|
|
#include "2s2h/GameInteractor/GameInteractor.h"
|
|
|
|
void RegisterElegyAnywhere() {
|
|
REGISTER_VB_SHOULD(VB_ELEGY_CHECK_SCENE, {
|
|
if (CVarGetInteger("gCheats.ElegyAnywhere", 0)) {
|
|
*should = true;
|
|
}
|
|
});
|
|
}
|