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