Files
volcano-2022/source/prog.h
T

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