mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 10:32:29 +00:00
14 lines
202 B
C++
14 lines
202 B
C++
|
|
#ifndef TEMPEST_SPHERE_C_AASPHERE_HPP
|
||
|
|
#define TEMPEST_SPHERE_C_AASPHERE_HPP
|
||
|
|
|
||
|
|
#include "tempest/Vector.hpp"
|
||
|
|
|
||
|
|
class CAaSphere {
|
||
|
|
public:
|
||
|
|
// Member variables
|
||
|
|
C3Vector c;
|
||
|
|
float r;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|