13 lines
147 B
C++
13 lines
147 B
C++
#include "prog.h"
|
|
|
|
// Constructor
|
|
Prog::Prog(std::string executablePath)
|
|
{
|
|
asset = new Asset(executablePath);
|
|
}
|
|
|
|
Prog::~Prog()
|
|
{
|
|
delete asset;
|
|
}
|