Skip to content
Snippets Groups Projects
bodystate.cpp 207 B
#include "bodystate.h"

BodyState::BodyState() {
    this -> pos = Vector2();
    this -> vel = Vector2();
}

BodyState::BodyState(Vector2 pos, Vector2 vel) {
    this -> pos = pos;
    this -> vel = vel;
}