26 lines
272 B
C++
26 lines
272 B
C++
#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
|