NouVeL/NVL/NouVeL.cpp

13 lines
267 B
C++
Raw Normal View History

2022-08-18 12:17:43 -04:00
#if 0
2021-12-12 03:41:54 -05:00
#include <string>
#include <iostream>
2021-12-17 01:05:38 -05:00
#include <sstream>
2022-05-10 02:42:12 -04:00
#include "Parser.h"
2021-05-14 11:49:21 -04:00
2021-12-12 03:41:54 -05:00
int main() {
2022-05-10 02:42:12 -04:00
const std::string PJ_DIR = "E:\\Archive\\Projects\\NouVeL\\NVL\\";
std::vector<NVL::Parse::Scene> SCENES = NVL::Parse::ParseFile(PJ_DIR + "dialogue.nvl");
2021-05-11 00:50:56 -04:00
}
2022-05-09 01:50:09 -04:00
#endif