Complete disaster-recovery snapshot: engine/game source, game data assets, VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive. Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false, no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
28 lines
392 B
C++
28 lines
392 B
C++
#pragma once
|
|
|
|
#include "Proxies.hpp"
|
|
#include "Process.hpp"
|
|
|
|
namespace Proxies {
|
|
|
|
class CopyProcess:
|
|
public Process
|
|
{
|
|
public:
|
|
CopyProcess()
|
|
{}
|
|
CopyProcess(
|
|
Stuff::NotationFile *data_file,
|
|
bool bSuppress = true,
|
|
void* fcn = NULL
|
|
):
|
|
Process(data_file,bSuppress,fcn)
|
|
{}
|
|
|
|
virtual void
|
|
CopyCallback(GenericProxy* proxy)
|
|
{}
|
|
};
|
|
|
|
}
|