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