12 lines
154 B
Java
12 lines
154 B
Java
package model;
|
|
|
|
public class Vec2 {
|
|
public float x;
|
|
public float y;
|
|
|
|
Vec2(float x, float y) {
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
}
|