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