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
492 B
18 lines
492 B
#pragma once |
|
|
|
#include "DiabloUI/ui_item.h" |
|
#include "engine/clx_sprite.hpp" |
|
|
|
namespace devilution { |
|
|
|
const Uint16 DialogButtonWidth = 110; |
|
const Uint16 DialogButtonHeight = 28; |
|
|
|
void LoadDialogButtonGraphics(); |
|
void FreeDialogButtonGraphics(); |
|
ClxSprite ButtonSprite(bool pressed); |
|
void RenderButton(const UiButton &button); |
|
bool HandleMouseEventButton(const SDL_Event &event, UiButton *button); |
|
void HandleGlobalMouseUpButton(UiButton *button); |
|
|
|
} // namespace devilution
|
|
|