First commit
This commit is contained in:
15
framework/unify/math/vector2.js
Normal file
15
framework/unify/math/vector2.js
Normal file
@@ -0,0 +1,15 @@
|
||||
export default class vector2{
|
||||
|
||||
constructor( x, y ) {
|
||||
|
||||
this.x = x;
|
||||
|
||||
this.y = y;
|
||||
|
||||
}
|
||||
|
||||
x = 0;
|
||||
|
||||
y = 0;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user