Files
volcano_2022/source/prog.cpp

13 lines
147 B
C++

#include "prog.h"
// Constructor
Prog::Prog(std::string executablePath)
{
asset = new Asset(executablePath);
}
Prog::~Prog()
{
delete asset;
}