Point.cpp
user_6225994
plain_text
2 years ago
234 B
11
Indexable
#include "Point.h"
#include "Ulti.h"
#include <iostream>
using namespace std;
Point::Point(){}
Point::Point(int x, int y, char c){
_x = x;
_y = y;
_c = c;
}
void Point::DrawPoint(){
gotoxy(_x,_y);
cout << _c;
}Editor is loading...