Files
Nuake-custom/Nuake/src/Scripting/VM.h
Antoine Pilote 93e58db870 UI work
2021-07-19 00:09:00 -04:00

13 lines
159 B
C++

#pragma once
#include <src/Vendors/wren/src/include/wren.h>
namespace Nuake {
class VM
{
VM();
inline WrenVM* GetVM();
private:
WrenVM* m_VM;
};
}