------------------------------------------------------------------------------
| 34 | |
| 35 | //------------------------------------------------------------------------------ |
| 36 | void ofxLuaFileWriter::newLine() { |
| 37 | buffer << std::endl; |
| 38 | } |
| 39 | |
| 40 | void ofxLuaFileWriter::writeComment(const std::string& comment) { |
| 41 | buffer << "-- " << comment << std::endl; |