#pragma once #include #include #include "asset.h" #ifndef PROG_H #define PROG_H class Prog { private: Asset *asset; public: // Constructor Prog(std::string executablePath); // Destructor ~Prog(); // Bucle principal void run(); }; #endif