mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
12 lines
148 B
C++
12 lines
148 B
C++
#ifndef MATH_TYPES_HPP
|
|
#define MATH_TYPES_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
struct fixed16 {
|
|
int16_t n;
|
|
|
|
explicit operator float() const;
|
|
};
|
|
|
|
#endif
|