Add CHudBallInterface

Former-commit-id: cab29870fd
This commit is contained in:
Henrique Gemignani Passos Lima
2022-11-07 19:06:11 +02:00
parent cd46490a6c
commit 79c62af420
15 changed files with 965 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
#ifndef _CGUIGROUP
#define _CGUIGROUP
#include "GuiSys/CGuiCompoundWidget.hpp"
class CGuiGroup : public CGuiCompoundWidget {
public:
FourCC GetWidgetTypeID() const override { return 'GRUP'; }
void SelectWorkerWidget(int workerId, bool setActive, bool setVisible);
CGuiWidget* GetSelectedWidget();
const CGuiWidget* GetSelectedWidget() const;
bool AddWorkerWidget(CGuiWidget* worker) override;
void OnActiveChange() override;
private:
uint xb8_workerCount;
int xbc_selectedWorker;
bool xc0_b;
};
#endif // _CGUIGROUP