JSBPackageWriter.cpp 611 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  3. // LICENSE: Atomic Game Engine Editor and Tools EULA
  4. // Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
  5. // license information: https://github.com/AtomicGameEngine/AtomicGameEngine
  6. //
  7. #include <Atomic/IO/FileSystem.h>
  8. #include "JSBind.h"
  9. #include "JSBModule.h"
  10. #include "JSBPackage.h"
  11. #include "JSBEnum.h"
  12. #include "JSBClass.h"
  13. #include "JSBPackageWriter.h"
  14. namespace ToolCore
  15. {
  16. JSBPackageWriter::JSBPackageWriter(JSBPackage *package) : package_(package)
  17. {
  18. }
  19. void JSBPackageWriter::GenerateSource()
  20. {
  21. }
  22. }