25 lines
366 B
C++
25 lines
366 B
C++
//
|
|
// Created by Victor Le Roch on 20/05/2020.
|
|
//
|
|
|
|
#ifndef BE_TERRARIUM_H
|
|
#define BE_TERRARIUM_H
|
|
|
|
|
|
class Terrarium {
|
|
private:
|
|
int id;
|
|
int radState;
|
|
int tapState;
|
|
public:
|
|
Terrarium(int id);
|
|
|
|
int getRadState() const;
|
|
void setRadState(int radState);
|
|
int getTapState() const;
|
|
void setTapState(int tadState);
|
|
|
|
};
|
|
|
|
|
|
#endif //BE_TERRARIUM_H
|