/**
  * PlayerBase
  * Auteur : G.Burri
  * version 1.0
  */
  
  
class PlayerBase
{
    private Position position;
    private int id;
    
    public PlayerBase(Position pos, int id)
    {
        this.id = id;
        this.position = pos;
    }
    
    public int getId()
    {
        return this.id;   
    }    
}