Skip to content

Commit

Permalink
Include point.h
Browse files Browse the repository at this point in the history
  • Loading branch information
CLIDragon committed Aug 29, 2024
1 parent 1fff4af commit 7666a48
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/monmove.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
#include "options.h"
#include "pathfinding.h"
#include "pimpl.h"
#include "point.h"
#include "rng.h"
#include "scent_map.h"
#include "sounds.h"
Expand Down
2 changes: 1 addition & 1 deletion src/ranged.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3164,7 +3164,7 @@ tripoint target_ui::choose_initial_target()

// Try closest practice target
map &here = get_map();
const std::optional<tripoint> target_spot = find_point_closest_first( src, range, [this,
std::optional<tripoint> target_spot = find_point_closest_first( src, range, [this,
&here]( const tripoint & pt ) {
return here.tr_at( pt ).id == tr_practice_target && this->you->sees( pt );
} );
Expand Down
1 change: 1 addition & 0 deletions src/vehicle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
#include "options.h"
#include "output.h"
#include "overmapbuffer.h"
#include "point.h"
#include "pimpl.h"
#include "player_activity.h"
#include "pocket_type.h"
Expand Down

0 comments on commit 7666a48

Please sign in to comment.