This repository has been archived on 2022-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
Ecosysteme/univers.hpp
Mylloon 08584564bd
Ajouts
- 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
2022-03-31 13:31:37 +02:00

11 lines
137 B
C++

#ifndef _UNIVERS_HPP_
#define _UNIVERS_HPP_ 1
class Univers {
int _m, _n, _tour;
public:
Univers(int, int);
};
#endif