Add organized the vector into header and implementation files

This commit is contained in:
Lev
2021-05-22 00:45:33 -05:00
parent e764de4c10
commit c1521602d0
4 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#pragma once
class Vec3D
{
public:
int getLength();
int x;
int y;
int z;
private:
int size = 3;
};