LuaCompiler.cpp 609 B

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