You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
394 B
19 lines
394 B
/** |
|
* @file itemlabels.h |
|
* |
|
* Adds item labels QoL feature |
|
*/ |
|
#pragma once |
|
|
|
#include "engine.h" |
|
|
|
namespace devilution { |
|
|
|
void ToggleItemLabelHighlight(); |
|
void AltPressed(bool pressed); |
|
bool IsItemLabelHighlighted(); |
|
bool IsHighlightingLabelsEnabled(); |
|
void AddItemToLabelQueue(int id, int x, int y); |
|
void DrawItemNameLabels(const Surface &out); |
|
|
|
} // namespace devilution
|
|
|