Point.cpp
user_6225994
plain_text
08/17/2023 6:25 AM
312 B
21
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...