10 lines
106 B
C++
10 lines
106 B
C++
#pragma once
|
|
|
|
namespace BettolaMath {
|
|
|
|
struct Vec3 {
|
|
float x, y , z;
|
|
};
|
|
|
|
} /* namespace BettolaMath. */
|