NouVeL/NVL/NouVeL.cpp
2022-05-10 02:42:12 -04:00

12 lines
267 B
C++

#if 1
#include <string>
#include <iostream>
#include <sstream>
#include "Parser.h"
int main() {
const std::string PJ_DIR = "E:\\Archive\\Projects\\NouVeL\\NVL\\";
std::vector<NVL::Parse::Scene> SCENES = NVL::Parse::ParseFile(PJ_DIR + "dialogue.nvl");
}
#endif