Borrado todo el código y vuelta a empezar

This commit is contained in:
2022-08-11 09:19:49 +02:00
parent 1301ef6a27
commit 57ddf60c1b
24 changed files with 125 additions and 1336 deletions

12
source/prog.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "prog.h"
// Constructor
Prog::Prog(std::string executablePath)
{
asset = new Asset(executablePath);
}
Prog::~Prog()
{
delete asset;
}