mirror of
https://github.com/PoetryInCode/simple-rigid-sim.git
synced 2025-06-08 02:23:10 -04:00
8 lines
104 B
C++
8 lines
104 B
C++
#include "Vector.h"
|
|
|
|
Vector::Vector(float x, float y) {
|
|
this->x=x;
|
|
this->y=y;
|
|
}
|
|
|
|
Vector::Vector() {} |