mirror of
https://github.com/pret/pmd-sky.git
synced 2026-03-22 01:35:35 -05:00
7 lines
169 B
C
7 lines
169 B
C
#ifndef PMDSKY_MATH_H
|
|
#define PMDSKY_MATH_H
|
|
|
|
#define F248LessThanFloat(x, y) (x < (int)(y * 0x100))
|
|
#define F248LessThanInt(x, y) (x < 0x100 * y)
|
|
|
|
#endif //PMDSKY_MATH_H
|