2
0

LuaCompiler.cpp 629 B

1234567891011121314151617181920212223242526272829
  1. #include "LuaCompiler.h"
  2. #include "FileStream.h"
  3. #include "lua.hpp"
  4. namespace crown
  5. {
  6. //-----------------------------------------------------------------------------
  7. LuaCompiler::LuaCompiler(const char* root_path, const char* dest_path, const char* resource, uint32_t seed) :
  8. Compiler(root_path, dest_path, resource, seed),
  9. m_file_size(0),
  10. m_file_data(NULL)
  11. {
  12. }
  13. //-----------------------------------------------------------------------------
  14. bool LuaCompiler::compile()
  15. {
  16. return true;
  17. }
  18. //-----------------------------------------------------------------------------
  19. void LuaCompiler::write()
  20. {
  21. }
  22. } // namespace crown