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.
18 lines
440 B
18 lines
440 B
#pragma once |
|
|
|
#include "engine/rectangle.hpp" |
|
#include "panels/ui_panels.hpp" |
|
|
|
namespace devilution { |
|
|
|
extern int TotalSpMainPanelButtons; |
|
extern int TotalMpMainPanelButtons; |
|
extern int PanelPaddingHeight; |
|
extern const char *const PanBtnStr[8]; |
|
extern const char *const PanBtnHotKey[8]; |
|
extern Rectangle SpellButtonRect; |
|
extern Rectangle BeltRect; |
|
|
|
void SetPanelObjectPosition(UiPanels panel, Rectangle &button); |
|
|
|
} // namespace devilution
|
|
|