JSScriptObject.cpp 156 B

12345678910111213141516
  1. #include "JSScriptObject.h"
  2. namespace Atomic
  3. {
  4. ScriptObject::ScriptObject(Context* context) : Object(context)
  5. {
  6. }
  7. ScriptObject::~ScriptObject()
  8. {
  9. }
  10. }