diff options
Diffstat (limited to 'tests/LuaThreadStress/Stubs.cpp')
-rw-r--r-- | tests/LuaThreadStress/Stubs.cpp | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/tests/LuaThreadStress/Stubs.cpp b/tests/LuaThreadStress/Stubs.cpp index 709c7efe5..98fbf5b74 100644 --- a/tests/LuaThreadStress/Stubs.cpp +++ b/tests/LuaThreadStress/Stubs.cpp @@ -7,13 +7,14 @@ #include "Globals.h" #include "BlockInfo.h" #include "Bindings.h" +#include "DeadlockDetect.h" +#include "UUID.h" #include "Bindings/DeprecatedBindings.h" #include "Bindings/LuaJson.h" #include "Bindings/ManualBindings.h" #include "BlockEntities/BlockEntity.h" #include "Blocks/BlockHandler.h" #include "Generating/ChunkDesc.h" -#include "DeadlockDetect.h" @@ -333,3 +334,21 @@ cBlockEntity * cBlockEntity::Clone(int a_BlockX, int a_BlockY, int a_BlockZ) + +bool cLuaState::GetStackValue(int, cUUID *&) +{ + return false; +} + + + + + +bool cUUID::FromString(const AString &) +{ + return true; +} + + + + |