mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
feat(range): add CRange
This commit is contained in:
parent
cf1cd164de
commit
001a48a575
2 changed files with 17 additions and 0 deletions
6
tempest/Range.hpp
Normal file
6
tempest/Range.hpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#ifndef TEMPEST_RANGE_HPP
|
||||
#define TEMPEST_RANGE_HPP
|
||||
|
||||
#include "tempest/range/CRange.hpp"
|
||||
|
||||
#endif
|
||||
11
tempest/range/CRange.hpp
Normal file
11
tempest/range/CRange.hpp
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#ifndef TEMPEST_RANGE_C_RANGE_HPP
|
||||
#define TEMPEST_RANGE_C_RANGE_HPP
|
||||
|
||||
class CRange {
|
||||
public:
|
||||
// Member variables
|
||||
float l;
|
||||
float h;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue