15 lines
191 B
C++
15 lines
191 B
C++
#pragma once
|
|
|
|
namespace Gedeng {
|
|
|
|
class Vector3 {
|
|
public:
|
|
Vector3(float x, float y, float z) : x(x), y(y), z(z) {
|
|
}
|
|
|
|
float x;
|
|
float y;
|
|
float z;
|
|
};
|
|
|
|
} // namespace Gedeng
|