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