summaryrefslogtreecommitdiff
path: root/src/exporter.cpp
blob: 3baa99e3b3cbfceea8257386cff6c5a46e42d7ee (plain)
1
2
3
4
5
6
7
8
9
10
#include "exporter.hpp"


void TexoExporter::Put(const ScriptVariable &str)
{
    const int len = str.Length();
    for (int i = 0; i < len; ++i) {
        Put(str[i]);
    }
}