mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-12 15:58:28 -05:00
9 lines
158 B
C++
9 lines
158 B
C++
#include "Linker.h"
|
|
|
|
int main(const int argc, const char** argv)
|
|
{
|
|
const auto linker = Linker::Create();
|
|
|
|
return linker->Start(argc, argv) ? 0 : 1;
|
|
}
|