mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
13 lines
184 B
C++
13 lines
184 B
C++
#ifndef TEMPEST_RANGE_C_IRANGE_HPP
|
|
#define TEMPEST_RANGE_C_IRANGE_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
class CiRange {
|
|
public:
|
|
// Member variables
|
|
int32_t l;
|
|
int32_t h;
|
|
};
|
|
|
|
#endif
|