mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 08:05:45 +00:00
9 lines
142 B
C++
9 lines
142 B
C++
#include "Unlinker.h"
|
|
|
|
int main(const int argc, const char** argv)
|
|
{
|
|
Unlinker unlinker;
|
|
|
|
return unlinker.Start(argc, argv) ? 0 : 1;
|
|
}
|