enderalse/source/Enderal DLL/src/Papyrus.cpp
Eddoursul f2150e94ef Ported Enderal DLL to CommonLibSSE-NG:
- 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
2022-07-31 20:55:11 +02:00

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;
}
}