Borrado todo el código y vuelta a empezar
This commit is contained in:
25
source/prog.h
Normal file
25
source/prog.h
Normal 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
|
||||
Reference in New Issue
Block a user