20 lines
278 B
C++
20 lines
278 B
C++
|
#include "Papyrus.h"
|
||
|
#include "PapyrusFunctions.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);
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
}
|