forked from jaildesigner-jailgames/jaildoctors_dilemma
28 lines
307 B
C++
28 lines
307 B
C++
#pragma once
|
|
#include <SDL2/SDL.h>
|
|
#include "common/utils.h"
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#ifndef ASK_ME_H
|
|
#define ASK_ME_H
|
|
|
|
class AskMe
|
|
{
|
|
private:
|
|
// Punteros y objetos
|
|
options_t *options;
|
|
|
|
// Variables
|
|
|
|
|
|
public:
|
|
// Constructor
|
|
AskMe(options_t *options);
|
|
|
|
// Destructor
|
|
~AskMe();
|
|
};
|
|
|
|
#endif
|