mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 14:28:03 -05: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;
|
|
}
|