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

25
source/prog.h Normal file
View File

@@ -0,0 +1,25 @@
#pragma once
#include <SDL2/SDL.h>
#include <string>
#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