12 lines
137 B
C++
12 lines
137 B
C++
|
#ifndef _UNIVERS_HPP_
|
||
|
#define _UNIVERS_HPP_ 1
|
||
|
|
||
|
class Univers {
|
||
|
int _m, _n, _tour;
|
||
|
|
||
|
public:
|
||
|
Univers(int, int);
|
||
|
};
|
||
|
|
||
|
#endif
|