1 2 3 4 5 6 7 8 9 10 11 12
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; } }