ScriptObject.cpp 388 B

1234567891011121314151617
  1. // Copyright (C) 2009-2018, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #include <anki/script/ScriptObject.h>
  6. #include <anki/script/ScriptManager.h>
  7. namespace anki
  8. {
  9. ScriptAllocator ScriptObject::getAllocator() const
  10. {
  11. return m_manager->getAllocator();
  12. }
  13. } // end namespace anki