mirror of
https://github.com/whoahq/whoa.git
synced 2026-08-06 00:44:33 +03:00
13 lines
148 B
C++
13 lines
148 B
C++
#ifndef MATH_TYPES_HPP
|
|
#define MATH_TYPES_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
struct fixed16 {
|
|
int16_t n;
|
|
|
|
explicit operator float() const;
|
|
};
|
|
|
|
#endif
|