Also includes a few manual tweaks to comments and newlines for better results. Co-authored-by: Anders Jenbo <anders@jenbo.dk>
17 lines
279 B
C++
17 lines
279 B
C++
/**
|
|
* @file monhealthbar.h
|
|
*
|
|
* Adds monster health bar QoL feature
|
|
*/
|
|
#pragma once
|
|
|
|
namespace devilution {
|
|
|
|
struct Surface;
|
|
|
|
void InitMonsterHealthBar();
|
|
void FreeMonsterHealthBar();
|
|
|
|
void DrawMonsterHealthBar(const Surface &out);
|
|
|
|
} // namespace devilution
|