mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 10:32:29 +00:00
12 lines
157 B
C++
12 lines
157 B
C++
|
|
#ifndef TEMPEST_RANGE_C_RANGE_HPP
|
||
|
|
#define TEMPEST_RANGE_C_RANGE_HPP
|
||
|
|
|
||
|
|
class CRange {
|
||
|
|
public:
|
||
|
|
// Member variables
|
||
|
|
float l;
|
||
|
|
float h;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|