FILE / ScuroNeko/VMProtect

VMProtectCon/main.h

Исходный файл и его история в репозитории.
FILE f7e9d62a399408d9c5fb6f1f62eccdae156c0bf7
Files
VMProtect/VMProtectCon/main.h
T
VNGhostMans 5ec92ee05e first commit
Version 3.x.x
2023-05-14 20:21:09 +07:00

14 lines
207 B
C++

#ifndef MAIN_H
#define MAIN_H
class ConsoleApplication
{
public:
ConsoleApplication(const std::vector<std::string> &args);
int Run();
private:
std::vector<std::string> args_;
ConsoleLog log_;
};
#endif