Browse Source

🚚 Move 'Size' struct to engine.h

pull/2099/head
Juliano Leal Goncalves 5 years ago committed by Anders Jenbo
parent
commit
58501cab26
  1. 5
      Source/engine.h
  2. 5
      Source/inv.h

5
Source/engine.h

@ -192,6 +192,11 @@ struct Point {
}
};
struct Size {
int Width;
int Height;
};
struct ActorPosition {
Point tile;
/** Future tile position. Set at start of walking animation. */

5
Source/inv.h

@ -78,11 +78,6 @@ enum item_color : uint8_t {
// clang-format on
};
struct Size {
int Width;
int Height;
};
extern bool invflag;
extern bool drawsbarflag;
extern const Size InvRect[73];

Loading…
Cancel
Save