mirror of
https://github.com/zeldaret/ss
synced 2026-06-21 16:16:44 -04:00
f8e61c7de8
* More Lyt (maybe some wrong type associations) * more meter * Rename * More splits and renames * Fix SizedString conversion operators * Renames * dLytBattery_c almost OK * d_lyt_battery OK * diff clean * Continue doing splits while I'm at it * two more splits
22 lines
501 B
C++
22 lines
501 B
C++
#ifndef D_LYT_WINDOW_H
|
|
#define D_LYT_WINDOW_H
|
|
|
|
#include <nw4r/lyt/lyt_window.h>
|
|
|
|
class dTextBox_c;
|
|
|
|
class dWindow_c : public nw4r::lyt::Window {
|
|
public:
|
|
dWindow_c(const nw4r::lyt::res::Window *pBlock, const nw4r::lyt::ResBlockSet &ResBlockSet);
|
|
virtual ~dWindow_c() {}
|
|
void UpdateSize(dTextBox_c *textBox, f32 f);
|
|
|
|
// @bug: This does not implement UT's RTTI, so casts to dWindow_c will
|
|
// succeed even if all you have is a lyt::Window
|
|
|
|
private:
|
|
UNKWORD field_0x108;
|
|
};
|
|
|
|
#endif
|