Skip to content

Instantly share code, notes, and snippets.

Created October 4, 2012 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/cbb83bb63df61f0b7ab9 to your computer and use it in GitHub Desktop.
Save anonymous/cbb83bb63df61f0b7ab9 to your computer and use it in GitHub Desktop.
/*
* buttonUp.h
*
* Created on: Sep 28, 2012
* Author: Neth
*/
#ifndef BUTTONUP_H_
#define BUTTONUP_H_
#include "./src/static/config.h"
#include "outils.h"
#include "joueur.h"
#include <deque>
using namespace std;
/*!
* \brief Classe métier unique du jeu ButtonUp!
*
* Cette classe offre ce qu'il faut pour permettre la réalisation
* d'une partie de ButtonUp!
*
* \author J. Scoupreman
* \date Septembre 2012
*/
class ButtonUp {
deque<deque<Outils::Button> > plateau;
Joueur joueur1, joueur2;
unsigned partie, manche;
void initManche();
public:
ButtonUp(string, string);
};
#endif /* BUTTONUP_H_ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment