This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
DamesEtCo/includes/Butin.hpp

24 lines
414 B
C++
Raw Normal View History

#ifndef BUTIN
#define BUTIN
#include <iostream>
class Butin {
friend std::ostream &operator<<(std::ostream &, const Butin &);
// Plateau de jeu
// Joueurs
public:
Butin(); // constructor
virtual ~Butin(); // destructor
Butin(const Butin &); // copy constructor
const Butin &operator=(const Butin &); // copy assignement
};
// Fonction d'initialisation du jeu
#endif