reorganize jigsawx source

This commit is contained in:
2022-07-08 19:36:30 +00:00
parent 750e1a7bee
commit 9b50f893f0
48 changed files with 1 additions and 7196 deletions

View File

@@ -0,0 +1,9 @@
package jigsawx.math;
class Vec2{
public var x: Float;
public var y: Float;
public function new( x_ = .0, y_ = .0 ){
x = x_;
y = y_;
}
}