feat(range): add CRange

This commit is contained in:
fallenoak 2022-12-24 22:54:49 -06:00
parent cf1cd164de
commit 001a48a575
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 17 additions and 0 deletions

11
tempest/range/CRange.hpp Normal file
View 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