2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-10 21:21:50 +00:00

chore: add base for image converter tool

This commit is contained in:
Jan
2024-09-23 19:29:58 +02:00
parent fabefc8cd5
commit c37e9984ba
7 changed files with 249 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#include "ImageConverter.h"
int main(const int argc, const char** argv)
{
const auto imageConverter = ImageConverter::Create();
return imageConverter->Start(argc, argv) ? 0 : 1;
}