diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-09-01 22:27:30 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-09-01 22:27:30 +0200 |
commit | 31fd5bbc08234686cf798a93a18e0bb73615d1bf (patch) | |
tree | 59b964d01885916c5d49fef3c168ff10dcbdd93f /main | |
parent | 053ea3aa1c443c368f8b43591e3e970e12b50c70 (diff) |
rename entity -> object
Diffstat (limited to 'main')
-rw-r--r-- | main/clickable.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/clickable.hpp b/main/clickable.hpp index da50a1d1..88c309ef 100644 --- a/main/clickable.hpp +++ b/main/clickable.hpp @@ -6,13 +6,13 @@ namespace floormat { -struct entity; +struct object; struct clickable final { Math::Range2D<unsigned> src; Math::Range2D<int> dest; BitArrayView bitmask; - entity* e; + object* e; float depth, slope; Vector2s bb_min, bb_max; // debug only uint32_t stride; |