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.
20 lines
431 B
20 lines
431 B
/** |
|
* @file itemlabels.h |
|
* |
|
* Adds item labels QoL feature |
|
*/ |
|
#pragma once |
|
|
|
#include "engine.h" |
|
|
|
namespace devilution { |
|
|
|
void ToggleItemLabelHighlight(); |
|
void AltPressed(bool pressed); |
|
bool IsItemLabelHighlighted(); |
|
void ResetItemlabelHighlighted(); |
|
bool IsHighlightingLabelsEnabled(); |
|
void AddItemToLabelQueue(int id, Point position); |
|
void DrawItemNameLabels(const Surface &out); |
|
|
|
} // namespace devilution
|
|
|