JSBModuleWriter.h 543 B

1234567891011121314151617181920212223242526272829303132
  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. #pragma once
  8. #include "JSBSourceWriter.h"
  9. namespace ToolCore
  10. {
  11. class JSBModule;
  12. class JSBModuleWriter : public JSBSourceWriter
  13. {
  14. public:
  15. virtual void GenerateSource();
  16. protected:
  17. JSBModuleWriter(JSBModule* module);
  18. JSBModule* module_;
  19. };
  20. }