diff options
Diffstat (limited to 'fxjs/cjs_display.cpp')
-rw-r--r-- | fxjs/cjs_display.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fxjs/cjs_display.cpp b/fxjs/cjs_display.cpp index 6970bfcb51..82f2f8244a 100644 --- a/fxjs/cjs_display.cpp +++ b/fxjs/cjs_display.cpp @@ -20,3 +20,8 @@ void CJS_Display::DefineJSObjects(CFXJS_Engine* pEngine) { pEngine->DefineObj("display", FXJSOBJTYPE_STATIC, nullptr, nullptr); DefineConsts(pEngine, ObjDefnID, ConstSpecs, FX_ArraySize(ConstSpecs)); } + +CJS_Display::CJS_Display(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime) + : CJS_Object(pObject, pRuntime) {} + +CJS_Display::~CJS_Display() = default; |