2022-08-03 21:21:03 +02:00
|
|
|
#include "Papyrus.h"
|
|
|
|
#include "PapyrusFunctions.h"
|
|
|
|
|
|
|
|
namespace Papyrus
|
|
|
|
{
|
|
|
|
bool Bind(VM* a_vm)
|
|
|
|
{
|
|
|
|
if (!a_vm) {
|
2022-09-20 13:56:38 +02:00
|
|
|
logger::critical("{}", "couldn't get VM State"sv);
|
2022-08-03 21:21:03 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
logger::info("{:*^30}", "FUNCTIONS"sv);
|
|
|
|
|
|
|
|
PapyrusFunctions::Bind(*a_vm);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|