thunderbrew/src/math/Types.hpp

13 lines
148 B
C++
Raw Normal View History

2023-01-02 13:17:18 -06:00
#ifndef MATH_TYPES_HPP
#define MATH_TYPES_HPP
#include <cstdint>
struct fixed16 {
int16_t n;
explicit operator float() const;
};
#endif