Eddoursul
f2150e94ef
- Cross-runtime build, tested on SE and AE - Intergrated Flat Map Markers and Stay At The System Page - Added tons of sanity checks - Automatically overrides bFreebiesSeen, bInvalidateOlderFiles, and bModManagerMenuEnabled INI values
22 lines
347 B
C++
22 lines
347 B
C++
#include "Papyrus.h"
|
|
#include "PapyrusFunctions.h"
|
|
#include "PhasmalistFunctions.h"
|
|
|
|
namespace Papyrus
|
|
{
|
|
bool Bind(VM* a_vm)
|
|
{
|
|
if (!a_vm) {
|
|
logger::critical("couldn't get VM State"sv);
|
|
return false;
|
|
}
|
|
|
|
logger::info("{:*^30}", "FUNCTIONS"sv);
|
|
|
|
PapyrusFunctions::Bind(*a_vm);
|
|
PhasmalistFunctions::Bind(*a_vm);
|
|
|
|
return true;
|
|
}
|
|
}
|