mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-23 17:45:46 +00:00
9 lines
190 B
C++
9 lines
190 B
C++
#include "ImageConverter.h"
|
|
|
|
int main(const int argc, const char** argv)
|
|
{
|
|
const auto imageConverter = ImageConverter::Create();
|
|
|
|
return imageConverter->Start(argc, argv) ? 0 : 1;
|
|
}
|