class Bomb { public Point m_pos; public int m_radius; public int m_timer; public Bomb(Point _pos, int _damage, int _time) { m_pos = _pos; m_radius = _damage; m_timer = _time; } }