mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 18:42:28 +00:00
13 lines
194 B
C++
13 lines
194 B
C++
#ifndef TEMPEST_PLANE_C_4PLANE_HPP
|
|
#define TEMPEST_PLANE_C_4PLANE_HPP
|
|
|
|
#include "tempest/Vector.hpp"
|
|
|
|
class C4Plane {
|
|
public:
|
|
// Member variables
|
|
C3Vector n;
|
|
float d;
|
|
};
|
|
|
|
#endif
|