This commit is contained in:
BenCat07 2018-03-29 19:56:19 +02:00
parent b692ce04c4
commit 75224ba3d2
5 changed files with 9 additions and 9 deletions

View File

@ -34,4 +34,4 @@ header += `
#endif /* DUMMY_AUTOGEN_HPP */`; #endif /* DUMMY_AUTOGEN_HPP */`;
console.log(header); console.log(header);
fs.writeFileSync("src/classinfo/dummy.gen.hpp", header); fs.writeFileSync("include/classinfo/dummy.gen.hpp", header);

View File

@ -70,5 +70,5 @@ dynamic dynamic_list;
console.log(header) console.log(header)
console.log(source) console.log(source)
fs.writeFileSync("src/classinfo/dynamic.gen.hpp", header); fs.writeFileSync("include/classinfo/dynamic.gen.hpp", header);
fs.writeFileSync("src/classinfo/dynamic.gen.cpp", source); fs.writeFileSync("src/classinfo/dynamic.gen.cpp", source);

View File

@ -540,4 +540,3 @@ namespace client_classes {
} }
#endif /* DYNAMIC_AUTOGEN_HPP */ #endif /* DYNAMIC_AUTOGEN_HPP */

View File

@ -1,3 +1,5 @@
#include "dynamic.gen.hpp" #include "dynamic.gen.hpp"
#include "common.hpp" #include "common.hpp"
@ -543,4 +545,3 @@ void dynamic::Populate() {
dynamic dynamic_list; dynamic dynamic_list;
} }