8 lines
142 B
C++
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;
|
||
|
}
|