Cube-World-Commands-Mod/cwmods/common/FloatVector3.cpp

8 lines
142 B
C++

#include "FloatVector3.h"
FloatVector3::FloatVector3(float x, float y, float z){
this->x = x;
this->y = y;
this->z = z;
}