15 lines
126 B
JavaScript
15 lines
126 B
JavaScript
export default class vector2{
|
|
|
|
constructor( x, y ) {
|
|
|
|
this.x = x;
|
|
|
|
this.y = y;
|
|
|
|
}
|
|
|
|
x = 0;
|
|
|
|
y = 0;
|
|
|
|
} |