#pragma once #include #include "common/utils.h" #include #include #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