mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-05-04 16:24:08 +00:00
nilrider:: fixed pfloor
This commit is contained in:
parent
9fc078e9c7
commit
e227119edb
@ -61,7 +61,7 @@ struct plan_replay {
|
|||||||
|
|
||||||
using xy_float = pair<ld, ld>;
|
using xy_float = pair<ld, ld>;
|
||||||
using xy_int = pair<int, int>;
|
using xy_int = pair<int, int>;
|
||||||
inline xy_float pfloor(xy_int p) { return {floor(p.first), floor(p.second)}; }
|
inline xy_int pfloor(xy_int p) { return {floor(p.first), floor(p.second)}; }
|
||||||
|
|
||||||
struct level {
|
struct level {
|
||||||
string name;
|
string name;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user