/*** Saeteurn, San ect_sfs@ecst.csuchico.edu 15b Program 6: Drawing Program ***/ #include "point.h" Point::Point(int x,int y,char c) : Shape(x,y) { m_type = c; } void Point::draw(Grid &grid) { if(m_x<=60 && m_y<=24) { grid.set(m_x,m_y,m_type); } }