class Player {
public int m_pid;
public Point m_pos;
public int m_bombs;
public int m_bombsStrength;
public int m_speed;
public boolean m_isInfected;
public Player(int _pid, Point _pos, int _bombs, int _bombsStrength, int _speed, boolean _isInfected) {
m_pid = _pid;
m_pos = _pos;
m_bombs = _bombs;
m_bombsStrength = _bombsStrength;
m_speed = _speed;
m_isInfected = _isInfected;
}
}