Mylloon
08584564bd
- Récupère des informations via CLI, avec des valeurs par défaut le cas échéant - Début classe Univers - Fonction initialisation de la simulation - Makefile
11 lines
137 B
C++
11 lines
137 B
C++
#ifndef _UNIVERS_HPP_
|
|
#define _UNIVERS_HPP_ 1
|
|
|
|
class Univers {
|
|
int _m, _n, _tour;
|
|
|
|
public:
|
|
Univers(int, int);
|
|
};
|
|
|
|
#endif
|