fallout2-ce/src/widget.cc

35 lines
479 B
C++
Raw Normal View History

2022-05-19 01:51:26 -07:00
#include "widget.h"
2022-09-23 05:43:44 -07:00
namespace fallout {
2022-07-04 23:20:20 -07:00
static void _showRegion(int a1);
2022-05-19 01:51:26 -07:00
// 0x66E6A0
2022-07-04 23:20:20 -07:00
static int _updateRegions[32];
2022-05-19 01:51:26 -07:00
// 0x4B5A64
void _showRegion(int a1)
{
// TODO: Incomplete.
}
// 0x4B5C24
int _update_widgets()
{
for (int index = 0; index < 32; index++) {
if (_updateRegions[index]) {
_showRegion(_updateRegions[index]);
}
}
return 1;
}
// 0x4B5998
void sub_4B5998(int win)
{
// TODO: Incomplete.
}
2022-09-23 05:43:44 -07:00
} // namespace fallout