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 */`;
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(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);

View File

@ -7,7 +7,7 @@
#define DUMMY_AUTOGEN_HPP
namespace client_classes {
class dummy {
public:
int CTETFParticleEffect { 0 };
@ -533,8 +533,8 @@ namespace client_classes {
int CTFFlameManager { 0 };
};
extern dummy dummy_list;
}
#endif /* DUMMY_AUTOGEN_HPP */
#endif /* DUMMY_AUTOGEN_HPP */

View File

@ -539,5 +539,4 @@ namespace client_classes {
extern dynamic dynamic_list;
}
#endif /* DYNAMIC_AUTOGEN_HPP */
#endif /* DYNAMIC_AUTOGEN_HPP */

View File

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