7 lines
70 B
JavaScript
7 lines
70 B
JavaScript
class dot{
|
|
|
|
constructor(x, y){
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
} |