mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
13 lines
No EOL
156 B
C
13 lines
No EOL
156 B
C
#ifndef TEMPEST_PLANE_H
|
|
#define TEMPEST_PLANE_H
|
|
|
|
#include "tempest/vector.h"
|
|
|
|
DECLARE_STRUCT(C4Plane);
|
|
|
|
struct C4Plane {
|
|
C3Vector n;
|
|
float d;
|
|
};
|
|
|
|
#endif |