Point.cpp

 avataruser_6225994
plain_text
a month ago
234 B
1
Indexable
Never
#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;
}