mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 17:49:21 +02:00
14 lines
236 B
C++
14 lines
236 B
C++
#ifndef UILAYOUT_H
|
|
#define UILAYOUT_H
|
|
|
|
#include "uideclarations.h"
|
|
|
|
class UILayout
|
|
{
|
|
public:
|
|
virtual void updateWidget(const UIWidgetPtr& widget) = 0;
|
|
virtual void updateWidgetChildren(const UIWidgetPtr& widget) = 0;
|
|
};
|
|
|
|
#endif
|