From 738d970d26794db8bb3dcf459c4a787b624910ba Mon Sep 17 00:00:00 2001 From: art0007i Date: Tue, 24 Sep 2024 15:11:32 +0200 Subject: make paintings 1 directional and add "arrows" the "arrows" are circles because I couldn't figure out how to use the DrawPolygon function... --- src/game_data.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/game_data.h') diff --git a/src/game_data.h b/src/game_data.h index 3179365..1f6d247 100644 --- a/src/game_data.h +++ b/src/game_data.h @@ -148,9 +148,13 @@ struct SubwayItem { int y; std::optional door; std::vector paintings; - std::vector tags; + std::vector tags; // 2-way teleports + std::vector entrances; // teleport entrances + std::vector exits; // teleport exits std::optional sunwarp; std::optional special; + + bool HasWarps() const; }; const std::vector& GD_GetMapAreas(); -- cgit 1.4.1