mirror of
https://github.com/pret/pmd-sky.git
synced 2026-03-21 17:25:15 -05:00
11 lines
242 B
C
11 lines
242 B
C
#ifndef PMDSKY_MATH_H
|
|
#define PMDSKY_MATH_H
|
|
|
|
#define INFINITY 999
|
|
#define INFINITY_2 999999
|
|
#define INFINITY_3 10000
|
|
|
|
#define F248LessThanFloat(x, y) (x < (int)(y * 0x100))
|
|
#define F248LessThanInt(x, y) (x < 0x100 * y)
|
|
|
|
#endif //PMDSKY_MATH_H
|