#ifndef PANDA_H
#define PANDA_H

#include <iostream>

class Panda
{
public:
    Panda();
    int getSexe();
    float getX();
    float getY();
    void setX(int abscisse);
    void setY(int ordonee);
    int getVision();
    int getNum();
    void setNum(int numero);

private:
    int sexe;
    int champVision;
    float posX;
    float posY;
    int numeroPanda;
};

#endif // PANDA_H
