8 lines
151 B
C++
8 lines
151 B
C++
|
#include "LongVector3.h"
|
||
|
|
||
|
LongVector3::LongVector3(long long x, long long y, long long z){
|
||
|
this->x = x;
|
||
|
this->y = y;
|
||
|
this->z = z;
|
||
|
}
|