mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
13 lines
253 B
C++
13 lines
253 B
C++
#include <Core/Core.h>
|
|
#include <plugin/bz2/bz2.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#include "ship.brc"
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
puts("Unpacking BRC.exe...");
|
|
if(!SaveFile("BRC.exe", BZ2Decompress(MemReadStream(BRC, BRC_length))))
|
|
puts("Error unpacking file!");
|
|
}
|