Library for 3.2'' uLcd Picaso Display4D system Picaso Serial Environment Command Set web: http://www.4dsystems.com.au/product/20/67/Processors_Graphics/PICASO/

Player.h

Committer:
adelino
Date:
2015-04-05
Revision:
1:a74e42cf52b2

File content as of revision 1:a74e42cf52b2:

#ifndef PLAYER_H
#define PLYER_H

#include "mbed.h"
#include <string>

class Player
{
public:

    Player(string _strName="None");
    
    ~Player(void);
    
//setter et getter
    int getLives(void) const;
    int getScore(void) const;
    int getCount(void) const;
    string getName(void) const;
    
    
    void setLives(int _lives);
    void setScore(int _score);
    void setCount(int _count);
    
    void decLives(void);
    void incCount(void);

protected:

string myName;
int myLives;
int myScore;
int myCount;

};

#endif