2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-06-06 08:42:35 +00:00

chore: update code style in ZoneCodeGenerator entrypoint

This commit is contained in:
Jan
2025-04-19 15:58:00 +02:00
parent 0f3ee1fa79
commit 785cf8c025
5 changed files with 76 additions and 91 deletions
+2 -2
View File
@@ -2,6 +2,6 @@
int main(const int argc, const char** argv)
{
const ZoneCodeGenerator zoneCodeGenerator;
return zoneCodeGenerator.Run(argc, argv);
auto zoneCodeGenerator = ZoneCodeGenerator::Create();
return zoneCodeGenerator->Run(argc, argv);
}